- monalisa
- Posts : 6
Join date : 2010-07-09
Unable to identify the dynamic object
Wed Jul 28, 2010 12:01 pm
Hi,
could u please help me out to identify a check box which is dynamic.
while recording it ,getting the id like this://table[@id='ID_MXTABLE_1333915313']/tbody/tr[7]/td[1]/input
which changes each time while run the script.i tried with storeAttribute command but unable to detect it.i ve given the code like this:
storeAttribute
//table[@id='ID_MXTABLE_1333915313']/tbody/tr[7]/td[1]/input
vm
please help me out to solve it
thanks,
monalisa
could u please help me out to identify a check box which is dynamic.
while recording it ,getting the id like this://table[@id='ID_MXTABLE_1333915313']/tbody/tr[7]/td[1]/input
which changes each time while run the script.i tried with storeAttribute command but unable to detect it.i ve given the code like this:
please help me out to solve it
thanks,
monalisa
Re: Unable to identify the dynamic object
Sat Aug 07, 2010 12:15 pm
hi,
you can use regular expression to bypass your id. like
regex: //table[@id='ID_MXTABLE_'d[10]] something like
or you can use index value of table instead od id like
//table[1]/tbody/tr[7]/td[1]/input[1]
Best of luck
you can use regular expression to bypass your id. like
regex: //table[@id='ID_MXTABLE_'d[10]] something like
or you can use index value of table instead od id like
//table[1]/tbody/tr[7]/td[1]/input[1]
Best of luck
- monalisa
- Posts : 6
Join date : 2010-07-09
Re: Unable to identify the dynamic object
Sat Aug 28, 2010 11:22 pm
Thanks for help....problem got solved with this
Permissions in this forum:
You cannot reply to topics in this forum