About 50 results
Open links in new tab
  1. What Is Selenium And What Is WebDriver? - Stack Overflow

    Jan 31, 2019 · What is Selenium? Selenium is a framework where scripts are written to run and execute webDriver which in turn controls browser. What is WebDriver? WebDriver is an API, …

  2. How to take a screenshot with Selenium WebDriver?

    Aug 6, 2010 · Is it possible to take a screenshot using Selenium WebDriver? (Note: Not Selenium Remote Control)

  3. Can Selenium interact with an existing browser session?

    197 Does anybody know if Selenium (WebDriver preferably) is able to communicate with and act through a browser that is already running before launching a Selenium Client? I mean if …

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

  5. How can I scroll a web page using selenium webdriver in python?

    Jan 8, 2014 · I am currently using selenium webdriver to parse through facebook user friends page and extract all ids from the AJAX script. But I need to scroll down to get all the friends. …

  6. 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, 7 months ago Modified 3 years, 2 months ago Viewed 568k times

  7. Python Selenium Chrome Webdriver - Stack Overflow

    I'm beginning the automate the boring stuff book and I'm trying to open a chrome web browser through python. I have already installed selenium and I have tried to run this file: from …

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

    Jan 17, 2017 · Also, iterating through all the elements on the page seems to be really slow, at least using the Chrome webdriver. Ideas? I asked (and answered) a more specific version …

  9. How to set browser's width and height in Selenium WebDriver?

    Sep 12, 2022 · 118 I'm using Selenium WebDriver for Python. I want instantiate the browser with a specific width and height. So far the closest I can get is: driver = webdriver.Firefox() …

  10. How to set window size for Chrome in Selenium? - Stack Overflow

    I'm using Selenium WebDriver for automation and I'm using Chromedriver. I have noticed that when my driver runs and opens the chrome browser, it opens the browser with a strange size. …