Developed in collaboration with the Chromium team, the ChromeDriver is a standalone server which implements WebDriver's wire protocol.

learn more… | top users | synonyms

0
votes
0answers
24 views

VS2012 with Update 2 - Cross Browser Testing with Chrome Issues

I am currently implementing cross browser testing for our application and have come across with an issue for Chrome 26.0.1410.64 m (including some older versions). When i run a CUIT, Chrome is ...
0
votes
2answers
23 views

Open a new window with Ruby

I want to open a new window using the openWindow() method that I can see in the rdoc, but whenever I attempt to run my code, I am told that the method does not exist. require 'rubygems' require ...
-1
votes
1answer
39 views

How to test multiple version of google chrome using chromedriver?

selenium web-driver with java then how to use chrome driver for test their lower version of Google chrome
0
votes
1answer
32 views

Extensions installed on chrome browser missing when chrome browser instance is opened with Selenium chromDriver

i have a peculiar problem here. When i open chromeBrowser via chromeDriver the extensions that were previosuly installed are missing.Also the apps extension is getting deleted from extensions ...
1
vote
0answers
50 views

remove arguments passed to chrome by selenium / chromedriver

I'm using selenium with python and chromium / chromedriver. I want to REMOVE switches passed to chrome (e.g. --full-memory-crash-report), but so far I could only find out how to add further switches. ...
0
votes
2answers
76 views

Alert doesn't close using Selenium WebDriver with Google Chrome.

I have the following Selenium script for opening alert on rediff.com: public class TestC { public static void main(String[] args) throws InterruptedException, Exception { ...
0
votes
1answer
134 views

Using Selenium and Chrome Webdriver

I'm trying to remotely log into twitter and tweet using selenium and Chrome webdriver but i cant seem to get it before i do anything else i want to just test if i can write into the username and ...
0
votes
1answer
114 views

XPATH and CSS locators throws error for Chrome in webdriver

I am facing issues in locating element in chrome. XPath of the element looks this way: //*[@id="signin"] (right click on the element and copy xpath) CSS for the same: $$("div[id='signin']") Now ...
0
votes
2answers
33 views

How to click a link in WebDriver using Python?

<tr><td class=wb><a href="javascript:void(fight())" style='text-decoration:none'><b>Click here!</a></td></tr> Hi, how to click this url?
-1
votes
2answers
165 views

WARNING: The server did not provide any stacktrace information error in Chrome

@Test public static void test() { System.setProperty("webdriver.chrome.driver", "D:\\abcd\\Jars\\chromedriver.exe"); WebDriver driver = new ChromeDriver(); ...
6
votes
3answers
320 views

Custom profile for Chrome

Environment: Mac OS X 10.8.3, Ruby 2.0.0p0, selenium-webdriver 2.32.1, ChromeDriver 26.0.1383.0. I want to change default browser language. I am testing if the site detects the browser language ...
0
votes
1answer
62 views

The method usingChromeDriverExecutable(File) is undefined for the type ChromeDriverService in Selenium WebDriver

My code is as below: ChromeDriverService service = new ChromeDriverService.Builder() .usingChromeDriverExecutable(new File("E:\\Software\\chromedriver.exe")) .usingAnyFreePort().build(); It ...
0
votes
0answers
161 views

Running Jbehave tests in Maven using Selenium Webdriver in Chrome

I am trying to run tests on Selenuim web driver using Jbehave story files through Maven but i am getting the following error: Started ChromeDriver port=48363 version=0.7 ...
0
votes
2answers
223 views

Selenium Grid 2 - Chromedriver does not start a new profile on a new run

While testing a website on Chrome using selenium webdriver (chromedriver) with ruby and selenium grid 2, I manually clicked on Allow to track my location. Since then every new run starts off with the ...
0
votes
0answers
92 views

webdriver chromedriver unable to click jquery mobile button

I am trying to test jquery mobile app using webdriver(ChromeDriver). Below is the code sample driver.get("http://localhost:8888/m/index.html"); new WebDriverWait(driver, ...
2
votes
1answer
473 views

Silencing ChromeDriver.exe logging

I am running ruby unit tests against Chrome using watir-webdriver. Whenever a test is run and chromedriver.exe is launched output similar to below appears: Started ChromeDriver port=9515 ...
2
votes
1answer
112 views

Disable chrome download multiple files confirmation

I developed a crawler with ruby watir-webdriver that downloads some files from a page. My problem is that when I click to download the second file, Chrome opens a bar in the top asking for ...
2
votes
1answer
99 views

Interacting with Chrome extension using watir-webdriver

I am able to launch Chrome browser with extension in the browser. But I am not able to interact with the extension. When I launch Chrome browser manually, I go to chrome://extensions and configure ...
1
vote
1answer
160 views

Selenium submit button click no response from server after 1 minute

I have a selenium test that fills out a form (using latest ChromeDriver) and clicks a submit button. This button then does some calculations which can take up to 5 minutes (its actually generating an ...
0
votes
1answer
226 views

WebDriver simulate touch events in Desktop Browser

I'm trying to simulate some touch events like swap, tap in web-based application using Chrome and Firefox browsers. I've tried to simulate touch events with Actions, Hummber.js, "Yahoo" lib(YUI) but ...
2
votes
0answers
138 views

Selenium failing with EOFile error with chromedriver on linux

I have an automated build machine running cucumber tests on an EC2 instance. I am using capybara (1.1.4) with selenium-webdriver (2.31.0) and chromedriver (25.0.1364.172-187217). The tests are run ...
0
votes
1answer
117 views

ChromeDriver touch events always disabled

I'm trying to lauch Chrome browser with touch events enabled, however when it always stats with touch events disabled (touch events doesn't work and "Emulate touch events" checkbox is not checked in ...
0
votes
1answer
39 views

Clear date input fails on chromewebdriver

I ran into a problem while switching from firefoxdriver to chromedriver with selenium, it was working fine in FF but now when I try to clear a date input field I have this error: Caused by: ...
0
votes
0answers
549 views

WebDriver - Element is not Clickable Chrome Driver

I am using WebDriver on Chrome and I am getting the following error when clicking an element: Clicking locator: //div[@id='tabContainer']/ul/li[3]/a/div Element > is not clickable at point (170, ...
4
votes
1answer
114 views

Don't want to get focus on .goto

How can i let chromium (used by watir) stay in the background? On every .goto the browser is getting the focus and becomes the active window. Using the same script with ff or ie doesn't act like ...
1
vote
0answers
63 views

Run chrome headless on Selenium [duplicate]

I would like to run a selenium-test using headless chrome. First I downloaded the chromedriver and passed its location as parameter: null=open('/dev/null','wb') cmd = ...
1
vote
1answer
305 views

Set chrome.prefs with python binding for selenium in chromedriver

I have been searching all day for this and it seems that there is no solution currently available from the chromedriver implementation for python. how do you set specific chrome.prefs (for example ...
1
vote
1answer
127 views

Selenium google Chrome c# cant open https pages

Tring to direct the selenium to a https page and nothing is happening the chrome browser is not directed to the url, if i give an http url it works. Any help with this issue?: this is my code: ...
0
votes
2answers
1k views

TestNG Selenium Grid 2 not running tests in parallel

I seem to be having an issue when attempting to run tests in parallel using TestNG alongside Selenium Grid 2. Although the right number of browsers are opened to match the amount of tests that I'm ...
1
vote
1answer
209 views

How to Detach Chrome Browser from Chrome Driver (Selenium Web Driver C#)

I want to use Selenium Web Driver in VS 2010 C# to open a Chrome browser, navigate to some web page and then close the driver but keep the browser open. I realize that I will have to manually close ...
2
votes
0answers
422 views

Selenium and Chromedriver won't talk to each other when started from command-line

For our integration tests, we're using selenium and different (versions of) drivers for Chrome, Firefox and IE. There is no UI (or X for that matter) on our build-server, i.e. headless. We're using ...
0
votes
1answer
407 views

TimeOut issue and stale instances of webdriver after test fails

I am testing a web application using Webdriver, more or less as decribed below. When the tests pass, everything is fine. However, I noticed the below 2 issues when one of the test fails. a)If one ...
0
votes
0answers
96 views

Chrome 24 UI is unchanged eventhough selenium executes the actions

My test cases were working fine with selenium+chrome 23. I upgraded to chrome browser 24 and tried running the cases. although selenium executes the cases, the changes are not reflected in UI ...
0
votes
1answer
299 views

Selenium chrome driver can't be found when added to eclipse as maven dependency

I am using m2e eclipse plugin in 4.2 Juno. I see the selenium-chrome-driver-2.26.0.jar file in my maven dependencies after adding <dependency> ...
0
votes
0answers
454 views

capybara selenium error when using chrome driver on windows 7

I have following settings in cucumber tests env.rb Capybara.register_driver :selenium do |app| p "browser #{browser}" if(browser == "firefox") Capybara::Selenium::Driver.new(app, :browser => ...
0
votes
0answers
69 views

ChromeDriver cannot detect elements in a wizard that uses a breadcrumb

Whenever I use ChromeDriver on any type of wizard that uses a breadcrumb, my functions run fine on the first screen of the wizard, but they fail on the second screen with the error: Not implemented ...
0
votes
0answers
74 views

Chromedriver missing the element to click

Chromedriver seems to be missing the element it is supposed to click: driver.findElement(By.cssSelector("html body div#colorbox div#cboxWrapper div div#cboxContent div#cboxClose")).click(); ...
2
votes
1answer
840 views

Passing options to chrome driver selenium

I am trying to disable the output to the console for chrome. if i pass the --start-maximized option it works fine. I may have the wrong command? Any insight would be useful. Thanks in advanced. ...
0
votes
0answers
242 views

Two different ways to override console.log, why one is not working in js.executeScript()?

I overwrite console.log function and put it into executeScript() which is method of selenium web driver. For example, I wrote: js.executeScript("console.log = function(txt) {alert(txt);};"); is not ...
1
vote
1answer
514 views

The method executeScript(selenium web driver) cannot define a global variable for later use?

I am using the method executeScript in selenium web driver, I found a problem: js.executeScript("var b='1'; "); js.executeScript("alert(b)"); After I run above code, I suppose get a alert window ...
2
votes
3answers
3k views

How to run Selenium WebDriver test cases in Chrome?

I tried this WebDriver driver = new ChromeDriver(); But i'm getting the error as Failed tests: setUp(com.TEST): The path to the driver executable must be set by the webdriver.chrome.driver ...
0
votes
0answers
209 views

Selenium with Chromedriver: mimicking page_load_timeout

Attempting to scrape webpages using Selenium webdriver, and screenshotting pages with flash elements by using chromedriver. Downside is, Pages I scrape might encounter elements that never, ever ...
0
votes
1answer
247 views

Run Geb tests with chromeDriver without opening the browser

I want to run my Geb specs with chrome driver without having to watch the tests on the browser? can this be done? P.D.: I know I can use the HtmlUnitDriver, but this driver sometimes gives my errors ...
0
votes
0answers
47 views

Is there a way to disable the tel protocol handler using ChromeDriver?

This doesn't seem to be working: DesiredCapabilities capabilities = DesiredCapabilities.chrome(); capabilities.setCapability("chrome.pref", [ 'settings.protocol_handler.excluded_schemes.tel': ...
0
votes
2answers
995 views

Launching Chrome Driver, but not able to do any actions?

I am trying to run my webdriver tests in Chrome. Here are the steps I'm using to launch Chrome driver: Set the chrome binary path System.setProperty("webdriver.chrome.driver", ...
1
vote
1answer
76 views

Selecting by a numeric id in grails geb

Using the chrome driver for selenium, I'm trying to select an element from my page by its id, which is numerical (ie 1000). This fails, giving: org.openqa.selenium.InvalidElementStateException: ...
1
vote
1answer
231 views

Selenium exception when using chrome driver

While doing same testing with Geb in a Grails application, the tests passed when runned with default's HtmlUnitDriver. But, when I changed to ChromeDriver, I was receiving ...
0
votes
0answers
37 views

Using browser drivers while using tortoise subversion in jenkins

I am using windows xp, maven3.0.4, jenkins, tortoise subversion I am using tortoise subversion where I post my code and use it to run tests in slave machines from the master(all machines are windows ...
0
votes
1answer
424 views

how to stop selenium chromedriver from logging to the screen

How do I stop selenium chromedriver from logging errors to the screen? I am running some cucumber tests and Im using capybara & the selenium chromedriver to drive the tests. In the last few ...
0
votes
1answer
219 views

Making System.setProperty platform independent in a Maven Project for Selenium Tests

I am currently creating selenium automation using webdriver in Maven using Java. Now for initializing the browsers such as Chrome and IE I have to set the system property such as ...

1 2 3