About 9,970,000 results
Open links in new tab
  1. How to use Selenium with Python? - Stack Overflow

    Jul 9, 2013 · 53 How do I set up Selenium to work with Python? I just want to write/export scripts in Python, and then run them. Are there any resources for that? I tried googling, but the stuff I found …

  2. How do I find an element that contains specific text in Selenium ...

    Jan 17, 2017 · I'm trying to test a complicated JavaScript interface with Selenium (using the Python interface, and across multiple browsers). I have a number of buttons of the form: <div>My …

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

    Dec 1, 2019 · Selenium - wait until element is present, visible and interactable Asked 6 years ago Modified 3 months ago Viewed 275k times

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

    Mar 19, 2019 · How to select a drop-down menu value with Selenium using Python? Asked 14 years, 2 months ago Modified 1 year, 2 months ago Viewed 665k times

  5. How can I bypass the Google CAPTCHA with Selenium and Python?

    How can I bypass the Google CAPTCHA using Selenium and Python? When I try to scrape something, Google give me a CAPTCHA. Can I bypass the Google CAPTCHA with Selenium Python? As an …

  6. How to take a screenshot with Selenium WebDriver?

    Aug 6, 2010 · 5 There are multiple methods through Selenium 's Java and Python client to take a screenshot using Selenium WebDriver.

  7. Finding elements by class name with Selenium in Python

    In Python, Selenium provides a method called find_elements_by_class_name to find elements with the same class name. This method returns a list of all elements that match the provided class name.

  8. Typing the Enter/Return key in Selenium - Stack Overflow

    29 Now that Selenium 2 has been released, it's a bit easier to send an Enter key, since you can do it with the send_keys method of the selenium.webdriver.remote.webelement.WebElement class (this …

  9. How do I pass options to the Selenium Chrome driver using Python ...

    May 12, 2013 · The Selenium documentation mentions that the Chrome webdriver can take an instance of ChromeOptions, but I can't figure out how to create ChromeOptions. I'm hoping to pass the - …

  10. How to properly use By class in selenium with python

    Aug 14, 2016 · I've written a code to test a page in python with selenium. The code works but now I'm trying to rewrite it better. I have created a locators.py file as described in the following …