- Selenium_User
- Posts : 1
Join date : 2012-02-21
Unable to Detect Dynamic form ID in webdriver
Tue Feb 21, 2012 9:35 pm
I am trying to detect dynamic form ID using webdriver.
In selenium IDE I got command like Selectframe , Target= "CitrixUI_hkkji" so target is dynamically generated with CitrixUI_ as a comman part
SO in selenium webdriver i write command driver.switchto().frame("CitrixUI_hkkji") , but as this target is dynamic so not detectable.
Is there any solution for this?
Value of target in IDE is "CitrixUI_hkkji" , but it is not mentioned that whether it is ID/name/css/xpath . So how to solve this problem ? Can I use regular expression in this case? If yes please provide any example
In selenium IDE I got command like Selectframe , Target= "CitrixUI_hkkji" so target is dynamically generated with CitrixUI_ as a comman part
SO in selenium webdriver i write command driver.switchto().frame("CitrixUI_hkkji") , but as this target is dynamic so not detectable.
Is there any solution for this?
Value of target in IDE is "CitrixUI_hkkji" , but it is not mentioned that whether it is ID/name/css/xpath . So how to solve this problem ? Can I use regular expression in this case? If yes please provide any example
- faramkaProfessional
- Posts : 143
Join date : 2011-09-15
Location : Poland
Re: Unable to Detect Dynamic form ID in webdriver
Wed Feb 22, 2012 8:49 pm
It is id.Value of target in IDE is "CitrixUI_hkkji" , but it is not mentioned that whether it is ID/name/css/xpath
Can you try with this xpath:
- Code:
"//frame[contains(@id, 'CitrixUI')]"
You can use other locators as parameter: http://pear.php.net/package/Testing_Selenium/docs/latest/Selenium/Testing_Selenium.html#methodselectFrame
Permissions in this forum:
You cannot reply to topics in this forum