About 10,400,000 results
Open links in new tab
  1. Python and how to get text from a Selenium element WebElement object

    Nov 15, 2022 · Python and how to get text from a Selenium element WebElement object Asked 10 years, 11 months ago Modified 3 years, 1 month ago Viewed 175k times

  2. How can I check if an element exists with Selenium WebDriver?

    How can I check if an element exists with Selenium WebDriver? [duplicate] Asked 14 years, 6 months ago Modified 3 years, 1 month ago Viewed 568k times

  3. python - Selenium - wait until element is present, visible and ...

    Dec 1, 2019 · In Selenium, waiting for an element to be present, visible, and interactable is a common requirement to ensure that your test scripts are robust and reliable. You can achieve this by using …

  4. java - Selenium WebDriver How to Resolve Stale Element Reference ...

    Apr 23, 2013 · What was happening to me was that webdriver would find a reference to a DOM element and then at some point after that reference was obtained, javascript would remove that element and …

  5. Scroll Element into View with Selenium - Stack Overflow

    Aug 4, 2010 · Is there any way in either Selenium 1.x or 2.x to scroll the browser window so that a particular element identified by an XPath is in view of the browser? There is a focus method in …

  6. How to avoid "StaleElementReferenceException" in Selenium?

    Oct 19, 2012 · I am implementing a lot of Selenium tests using Java - sometimes, my tests fail due to a StaleElementReferenceException. Could you suggest some approaches to making the tests more …

  7. Checking if an element exists with Python Selenium

    The find-element (singular) form throws an exception when the element is not found. The find-elements (plural with 's') will return an empty list. In my humble opinion all the other examples that are using try …

  8. selenium.common.exceptions.ElementClickInterceptedException: …

    Sep 1, 2019 · selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element is not clickable with Selenium and Python Asked 6 years, 3 months ago …

  9. Selenium C# WebDriver: Wait until element is present

    Aug 9, 2011 · Learn how to use Selenium C# WebDriver to wait until an element is present, ensuring robust and reliable test scripts.

  10. How to select a drop-down menu value with Selenium using Python?

    Mar 19, 2019 · To select an <option> element from a html-select menu you have to use the Select Class. Moreover, as you have to interact with the drop-down-menu you have to induce …