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
0
votes
1 answer

Protractor - Error: Failed: WebDriverError

I have a protractor project that It starts and runs specs as I expect but after almost 2 minutes it starts getting this error on rest of test cases. I don't know why. It had run perfectly one week ago but now I faced that error and it doesn't give…
0
votes
0 answers

Web driver error when running Codeception from Windows 7

I am running my codeception acceptance test in a Windows 7 machine which is causing the below mentioned issue. Signature: somethingSearchCept Test: tests\acceptance\test\tstCases_somethingSearch\somethingSearchCept.php Scenario -- …
AnOldSoul
  • 4,017
  • 12
  • 57
  • 118
0
votes
2 answers

How to fill Authentication Required popup in chrome with Selenium C#

I'm trying to open a intranet website with Selenium which redirects to another link for login and gets back to original URL on valid login. For example - When I start webdriver and navigate to original site URL https://DemoOriginalWebsite.Com the…
Ashok
  • 1,868
  • 6
  • 36
  • 70
0
votes
0 answers

How to disable dns prefetch with selenium ruby?

I'm trying to disable the dns prefetching when running tests with selenium. I've tried using the arg "--dns-prefetch-disable" on the chromeOptions but nothing happened. Someone managed to solve it? Thanks!
0
votes
0 answers

How to add manually written extension to Internet Explorer 11?

I have written a JavaScript, which i want to invoke in web page that is currently open in IE11. Is there any way that i can invoke this JavaScript as extension to IE11 browser. For example : In chrome i can easily do this by enabling the developer…
0
votes
1 answer

gulp-protractor error with chrome v54 / web driver v2.25

Due to the latest update of chrome (v54) we've noticed our protractor tests failing. We attempted to update to the latest version of gulp-protractor (v3.0.0) which in turn downloads the latest web driver (v2.25) to resolve the issue but…
0
votes
1 answer

run a while loop untill a css selector is present on web page

I need to run this loop until ".loadMore" css selector is present on webpage: while ec.presence_of_element_located('.loadMore'): element_number = 25 * i wait = WebDriverWait(driver, time1); sub_button = (by, hook +…
nishant kumar
  • 507
  • 10
  • 28
0
votes
1 answer

Chrome webdriver in selenium wont connect to proxy

I've bound port 3003 on my local machine to a remote server ssh user@remoteserver -D 3003 And in my python script from selenium import webdriver chrome_options =…
rocketas
  • 1,679
  • 3
  • 18
  • 30
0
votes
1 answer

How can I configure Chimp to open a browser with given width and height?

Recently I started with Chimp and my test suite is growing. I want to implement a feature that I need to run on a mobile viewport specifically (e.g. to test Hamburger menu). I tag such a scenario with the @mobile tag. Chimp is by default running in…
0
votes
0 answers

Finding the certificate thumbprint for a particular website on Chrome through Selenium WebDriver?

Let's say I open a particular website on Chrome through Selenium - www.google.com. I can view the certificate thumbprint for this website manually. But is it possible to get hold of this thumbprint thru any webdriver apis? Or programatically how…
0
votes
2 answers

Unable to select value from dropbox list in Selenium

I'm trying to select a value from a dropbox. I have tried with XPath and ID but seem unable to reach it This is what I tried var mySelectElm4 = driver.FindElement(By.Id("ddlCountryOfBirth")); var mySelect4 = new…
AutDev
  • 65
  • 8
0
votes
0 answers

org.openqa.selenium.UnsupportedCommandException

I have a code base which is deployed in a server where I don't have any access other than uploading war file. I have tested the application using apache tomcat 7 locally and it works perfectly. I have a code in JAVA which triggers a remote web…
0
votes
1 answer

Connection pool for selenium in python

Running selenium tests in python and chrome. Between each test, it logs that its creating a new http connection. Is it possible to create a connection pool so that a new one isn't created for each test?
0
votes
2 answers

Check if external resources are being loaded by webdriver

In Chrome, I can open up the developer console and switch to the network tab to see what resources are being loaded and how long each one has taken. Is there anyway to access similar information from Chrome webdriver or selenium?
Ben McCann
  • 18,548
  • 25
  • 83
  • 101
0
votes
1 answer

What is the most reliable .net selenium web driver?

In using .net selenium webdrivers, I have been stumbling in 2 main issues, each for a different specific webdriver. The table below shows the issues Chrome and Firefox webdrivers have been falling short with me: I am using RellYa's selenium jquery…
Veverke
  • 9,208
  • 4
  • 51
  • 95