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
1
vote
2 answers

Selenium Chromedriver control issue

I have started using chrome for selenium and its working fine but when I open a new tab the control goes back to the main tab and executes the script there instead of the new tab. can someone help me how to tackle this issue.
1
vote
1 answer

Chromwebdriver problen when installing appium

I´m installing appium using these terminal commands: sudo npm install -g appium npm install wd the installation process never ends and the error is : Error trying to install Chromedriver binary. Waiting and trying again. fn must be a function i…
Tar
  • 185
  • 1
  • 1
  • 16
1
vote
1 answer

Protractor interactive (elementExplorer) shows result regardless of whether element is found

I have an element on my page with an id, i.e.

The Text

When I run protractor's elementExplorer, i.e. protractor ./config/protractor-conf.js --elementExplorer http://localhost:9001, and I type element(by.id('blabla')) I get an…
CodyBugstein
  • 21,984
  • 61
  • 207
  • 363
1
vote
0 answers

Unable to display stack trace when test fails in protractor with Jasmine2

I've run the protractor test with latest version 3.2.2. And the following are the chromewebdriver version: -rw-r--r-- 1 root staff 3.6M Apr 20 16:42 chromedriver_2.21mac32.zip -rwxr-xr-x 1 root staff 11M Apr 20 16:42…
1
vote
2 answers

How to tick a checkbox that has text with a url link in Selenium C#

This is the code im triying to access
1
vote
0 answers

Browsermob proxy + chrome webdriver Https infinit lopp

I am using Browsermob proxy to catch HAR content of loaded web page thru chrome webdriver. net.lightbody.bmp browsermob-core-littleproxy
1
vote
2 answers

Java - Selenium (chrome driver) element not visible exception

I have 2 websites that i would like to automate search process, and i am struggling of finding a way to locate and fill elements and speed up the process(as i use these websites many times a…
milorads
  • 51
  • 1
  • 11
1
vote
1 answer

How can I start installed browser without adding IE driver or Chrome driver in selenium web driver?

I have installed IE and chrome browser in my computer. I want to run my selenium script from original browser with all add-ons and default setting. I am able to find *.exe of browser with some capabilities.But can not able to write and open link…
1
vote
1 answer

Suitable Chrome driver to use with selenium tests

I was wandering since there is many chrome drivers available on the nuGet Packages Manager, which one is fitting the best with Selenium tests, does it make any difference at all? WebDriver…
user4629659
1
vote
1 answer

How can I move WebDriver to new opened Chrome tab without knowing index?

I am using the Selenium Python Bindings for web browser automation in Chrome. As part of the automation script, I click on a link and the website opens the page in a new tab. However, the WebDriver object in my python script is still pointing to the…
AdamMc331
  • 16,492
  • 10
  • 71
  • 133
1
vote
2 answers

Python - Selenium Chrome webdriver doesn't have components like WidevineCDM

I'm trying to use Selenium to open a page and go to Netflix and open a video and play. Once I actually get to the video, I can't load it because I get the error: Missing Components... Please visit chrome://components, locate the WidevineCdm…
1
vote
3 answers

chrome webdriver - PDF documents downloading and not opening in new tab

I have found an issue whereby I will click on a link inside a webpage to a PDF document using google chrome. Previously, when I clicked on the link, the PDF document would load in a new tab. I would then perform some validation around the…
Banjaxx
  • 624
  • 2
  • 18
  • 34
1
vote
1 answer

Is there any difference between mobileEmulation and setting the user agent in Chrome?

I want to simulate mobile devices for testing and automation purposes. Using the Chromedriver and Selenium I have found 2 ways to do this. I can either set the user agent (example from here): from selenium import webdriver options =…
asemahle
  • 20,235
  • 4
  • 40
  • 38
1
vote
0 answers

Error: Timed out waiting for the WebDriver server at http://localhost:4444/wd/hub

When I run my webdriverjs, jasmine-node tests I am getting following error. Error: Timed out waiting for the WebDriver server at http://172.19.35.25:4444/wd/hub at Error () at onResponse…
MANISH ZOPE
  • 1,181
  • 1
  • 11
  • 28
1
vote
4 answers

Selenium webdriver (tested ChromeDriver) cant find option by text containing umlauts?

I have a dropdown which structure is this one: Now, I want to use Selenium Webdriver to select the last option by text (I cannot rely on the option being the last one actually). Trying this: var text = "   undersida"; var option =…
Anders Lindén
  • 6,839
  • 11
  • 56
  • 109