Tagged Questions
2
votes
1answer
360 views
How to indicate an ` ` in xpath?
Say we have the following HTML code. What I want is to locate to the label element whose text is 'AgendaShowCapacity (1 remaining)' with XPath.
<div id="pageContent">
<fieldset>
...
1
vote
2answers
1k views
"Element is no longer attached to the DOM” StaleElementReferenceException when selecting HTML table row
I am using Selenium 2/WebDriver for automation. I have a table and am trying to select a row in it. When the test runs, I can see the row become highlighted as if it is clicked, but then immediately I ...
6
votes
2answers
7k views
WebDriver: find elements by text
I know that WebDriver can locate links through their text, using find_element_by_link_text or find_element_by_partial_link_text.
Is it possible to locate any element (such as li, div, span, ...) by ...
3
votes
3answers
5k views
Locating element by link text (anchor tag innerHTML) or xpath fails in Selenium 2.0 Webdriver
I'm using Selenium 2.0 web driver. My script keeps failing whenever I try locating something in my page. It throws an exception whether I locate the element by LinkText or by XPath.
...
3
votes
2answers
1k views
Need help to frame locator for webdriver script
I have a button reach_analysis_button with id="x-auto-7".
But directly using that i am not able to locate the element from webdriver.
I tried ...