- anita.totad88
- Posts : 8
Join date : 2012-05-25
selenium-Webdriver
Fri May 25, 2012 1:50 pm
I am new to use Selenium and I have problem about locating a dynamic element. Could you please help me? Thank you very much in advance.
Here is my situation:
i have the following code to enter username which is dynamic so I cannot use its fixed id. Is there any way to locate it correctly?
"input id="_jsx_0_3l" class="jsx30textbox" type="text" label="username_txt"/"
but i have tried with this
but it did not work
please help me on this
please help on this
Here is my situation:
i have the following code to enter username which is dynamic so I cannot use its fixed id. Is there any way to locate it correctly?
"input id="_jsx_0_3l" class="jsx30textbox" type="text" label="username_txt"/"
but i have tried with this
//input[starts-with(@id,',_jsx_0_')] |
please help me on this
please help on this
Re: selenium-Webdriver
Fri May 25, 2012 2:08 pm
You can use class / type to locate that text box
- Code:
xpath=(//input[@type='text'])
//input[@type='text']
xpath=(//*[@class="jsx30textbox"])
//input[contains(@id, '_jsx_0_')]
- anita.totad88
- Posts : 8
Join date : 2012-05-25
Re: selenium-Webdriver
Fri May 25, 2012 3:53 pm
thanks it worked fine
- anita.totad88
- Posts : 8
Join date : 2012-05-25
Re: selenium-Webdriver
Fri May 25, 2012 4:09 pm
I used this : //input[@type='text']
- I downloaded and installed Selenium WebDriver Jar files in my Eclipse, but still i am facing issues and couldn't run the webdriver scripsts.
- Selenium IDE generated testcase script is not working in Selenium Webdriver
- Selenium webdriver Error - "Could not contact Selenium Server".
- Using Selenium Webdriver through selenium with fancy reporting
- Selenium RC with NUnit throwing error - File does not exist. File 'c:\Projects\WebDriver\trunk\src\Selenium.Core\HttpCommandProcessor.cs'
Permissions in this forum:
You cannot reply to topics in this forum