Questions tagged [chrome-web-driver]

WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more. ChromeDriver is a standalone server which implements WebDriver's wire protocol for Chromium. It is being developed by members of the Chromium and WebDriver teams.

WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more. ChromeDriver is a standalone server which implements WebDriver's wire protocol for Chromium. It is being developed by members of the Chromium and WebDriver teams.

213 questions
-3
votes
1 answer

Selenium webdriver - how do I hit the X button to stop the pageload?

Is there a command in the WebDriver API to stop the page load? I have a situation where the page takes forever to load, even though all the stuff I want is there. I just want to simulate manually hitting the X button next to the URL bar in order…
tadasajon
  • 14,276
  • 29
  • 92
  • 144
-3
votes
1 answer

InvalidSelectorException when selecting XPath button with Selenium

I built a class to validate the submission of tweets to Twitter. Whenever I attempt to hit the submit button, I get an InvalidSelectorException. It seems to have a perfectly reasonable xpath, taking the form of xpath=(//button[@type='button'])[17],…
Martin Erlic
  • 5,467
  • 22
  • 81
  • 153
-3
votes
3 answers

How to verify an invisible element on the Web Page

I am testing a link using webdriver, but i am not able to locate where that link(element) is there on the webpage. How to detect that where the given element is present on the webpage? Can anybody help?
1 2 3
14
15