About 3,590,000 results
Open links in new tab
  1. How do I find an element that contains specific text in Selenium ...

    Jan 17, 2017 · How do I find an element that contains specific text in Selenium WebDriver (Python)? Asked 13 years, 1 month ago Modified 2 years, 4 months ago Viewed 971k times

  2. 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 …

  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 …

  4. python - How to deal with certificates using Selenium? - Stack …

    Jul 1, 2014 · I am using Selenium to launch a browser. How can I deal with the webpages (URLs) that will ask the browser to accept a certificate or not? In Firefox, I may have a website like …

  5. 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 …

  6. 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 …

  7. python - Clear text from textarea with selenium - Stack Overflow

    If you take a look in the selenium source code you'll find that the clear ()-method is documented with the following comment: /** If this element is a text entry element, this will clear the value. …

  8. selenium - How to Maximize window in chrome using webDriver …

    Aug 31, 2012 · Is there a way to maximize the chrome browser window using python selenium WebDriver? Note: I am using Chrome Driver 23.0 Any solution on this would be greatly …

  9. python - Selenium headless: How to bypass Cloudflare detection …

    Jul 7, 2021 · The most efficient solution would be to use Selenium Stealth to initialize the Chrome Browsing Context. selenium-stealth is a python package to prevent detection. This programme …

  10. Checking if an element exists with Python Selenium

    Checking if an element exists with Python Selenium Asked 13 years, 7 months ago Modified 2 years, 11 months ago Viewed 372k times