The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
48 views

Unable to either launch or connect to Chrome using selenium-webdriver

I am creating webdriver as follows: var driver = require("selenium-webdriver"); driver = new webdriver.Builder(). usingServer(server.address()). withCapabilities({'browserName': 'chrome'}). ...
0
votes
1answer
34 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 ...
0
votes
1answer
57 views

Opening new tabs in Chrome using Watir causes problems using open tabs

Short version: new tabs in Chrome prevent old tabs from being used, fixing that means that opened tabs with PDFs in them get reused before a human can examine the PDFs. Long version: Originally it ...
2
votes
2answers
66 views

Chrome/Firefox do not retain cookies when invoked via (Watir-)Webdriver?

I am working on a project for a client using Ruby & Watir. He requires that the session is restored when the application is reloaded (so to save his login states). This is the normal behavior of ...
0
votes
1answer
71 views

Watir installation error windows

I have not used Watir or Watir-webdriver in about a year. I installed a fresh 32x Windows 7 on image on my computer. Next I installed Ruby with the installation pack version 2.0.0-p0. Then I updated ...
1
vote
1answer
32 views

navigate to settings page of chrome using selenium

I was looking to navigate to the "chrome:settings" using selenium. But when I try using driver.get("chrome://settings") it stops at the "about:blank". Also when I try using "http://chrome://settings" ...
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
vote
2answers
120 views

Define download directory for chromedriver selenium with python

Everything is in the title! Is there a way to define the download directory for selenium-chromedriver used with python? In spite of many research, I haven't found something conclusive... As a ...
3
votes
1answer
368 views

Chromedriver is extremely slow on a specific machine using Selenium Grid and .net

Overview: Chromedriver works normally on one machine but extremely slowly on two other identical machines. Setup: Selenium Webdriver using .Net for coding and Selenium Grid for distributing the ...
1
vote
1answer
70 views

How do I write a ruby web crawler which uses chrome?

I have a ruby web crawler that is currently coded to run in firefox. How do I switch it over to Chrome instead? def open_browser() tweaked_profile = Selenium::WebDriver::Firefox::Profile.new ...
0
votes
3answers
97 views

Running multiple Selenium tests at the same time

I would like to run multiple Selenium Tests (on a Jenkins server) at the same time. It currently runs only a single test at a time cause ChromeDriver seems to communicate over a special port. So ...
1
vote
1answer
102 views

How to solve errors from running jobs in parallel using Jenkins and watir webdriver?

I'm running tests from Jenkins on Windows and tests which work fine when only one is executing at a time encounter errors when multiple jobs are running on separate build threads at the same time. I ...
0
votes
2answers
187 views

watir webdriver “no such session: title\n”message when doing a Browser.new :chrome

I'm trying to get off the ground with Watir Webdriver and I need it to work with Chrome. I downloaded the chromedriver and added it to my path but when I do this (in irb, using a mac): require ...
3
votes
0answers
200 views

A child browser window closing itself apparently breaks Watir-webdriver's link to the parent window?

In Chrome, using watir-webdriver, I click a button that opens a child browser window. I do: @browser.window(title: 'Child').use I successfully interact with various items in that child window. ...
2
votes
1answer
496 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
101 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 ...
0
votes
2answers
147 views

Loading chrome with extension using watir-webdriver gives Timeout error

I have HTML Tidy extension installed in chrome. When I do: b = Watir::Browser.new :chrome The Chrome browser opens up but without extension. So I used following: b = Watir::Browser.new (:chrome, ...
0
votes
0answers
121 views

Python, Selenium 2, Chromedriver, and unsecure https/SSL

I need some assistance in allowing chrome to accept bad SSL certs / unsecure pages while being driven by Chromedriver. I've got the following setup on my script: def setUp(self): self.driver = ...
0
votes
1answer
118 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
266 views

Cucumber test suite with Capybara and Chromedriver hangs

I have a cucumber test suite which fails to run since I have moved to a new computer. The test suite uses Capybara (v1.1.2), Chrome Driver (v26.0.1383.0) and Selenium-Webdriver (v2.27.1) to run ...
0
votes
1answer
120 views

IE Opens When I Use ChromeWebdriver

I have tried searching, but have had no luck in finding a solution. I trying to get Selenium Grid to work on my local machine before placing nodes on other machines. Long story short when I try using ...
1
vote
1answer
119 views

ChromeDriver Ruby disable images

Is there a way to disable images in Chromedriver with ruby? There is a similar question but it deals with C# and I am not exactly sure how to port it over to ruby. Disable images in Selenium ...
1
vote
1answer
312 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 ...
0
votes
0answers
58 views

set a timout in python splinter web crawler

Trying to set a time out in python much like you would in ruby. I have a link that when I click it opens a popup but I can not access it because it causes the script to freeze until I kill it. I ...
2
votes
1answer
869 views

Chromedriver failing to launch or connect

Up until today, I have been using chromedriver to drive my watir-webdriver tests, and I have had no problems. My server still works and runs tests on the same version of the chromedriver and chrome. ...
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 ...
1
vote
1answer
402 views

ElementNotVisibleException in Selenium

I have a problem with Selenium WebDriver throwing ElementNotVisibleException for the element being loaded in a pop-up window even though when instantiating the WebDriver I use: ...
1
vote
1answer
238 views

Disable ChromeDriver Extensions in .NET

My question is in relation to how to disable chrome extension in selenium. What would be the C# equivalent of this? The following is what I've tried so far. ChromeOptions options = new ...
0
votes
0answers
35 views

xpath and properties are not accessable if Url defined in Beforeclass-testng

I am trying to execute my framework (keyword driven) Testing, which is working fine with Firefox but not with IE and Chrome. I found that it only works if I give the url inside a test (instead of ...
9
votes
3answers
4k views

how does selenium webdriver upload files to the browser?

I am a javascript/java developer and I have been trying to figure out how the selenium webdriver automation framework uploads files from the file system. It is impossible to set a file input via ...
1
vote
1answer
520 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 ...
0
votes
1answer
415 views

How can I run Selenium Webdriver test case using ChromeDriver?

I have done this File file = new File("path\\to\\chrome driver"); System.setProperty("webdriver.chrome.driver", file.getAbsolutePath()); WebDriver driver = new ChromeDriver(); Totally I have 5 ...
0
votes
1answer
249 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 ...
-1
votes
0answers
237 views

chromedriver unable to launch Chrome on (OSX,SeleniumGrid/Jenkins/PHPUnit)

I'm attempting to run selenium tests on Chrome. I use Jenkins with the Selenium Grid plugin. Because I'm testing a PHP project I use PHPUnit PHPUnit_Extensions_Selenium2TestCase class. This seems fine ...
0
votes
2answers
1k 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
77 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
3answers
827 views

set chrome options with remote driver

So there's a nice long list of switches that can be passed to the chromedriver. I would like to use some of them, specifically --disable-logging. I do no want to (only) use chromedriver locally ...
1
vote
1answer
421 views

ChromeDriver not communicating with the browser on OS X

I am trying to run a selenium test with chrome on OS X. It works fine with firefox, but chrome driver doesn't seem to communicate with the browser. Here's my code: import ...
0
votes
1answer
605 views

Cannot connect to Chrome on Selenium / Mountain Lion

I updated my OSX to Mountain Lion yesterday and now my Selenium tests stopped working with Chrome. I re-installed the newest Chromedriver to /usr/local/bin and python selenium from pip. I'm using the ...
1
vote
2answers
469 views

Default profile name in Chrome when using Watir-Webdriver?

I downloaded the Chromedriver then I extracted it to the right place (usr/bin), but I don't know what is the default profile name for the Chrome (Chromium) browser, so this line throw an error ...
0
votes
0answers
186 views

chrome driver without EULA by python

I am new about selenium. I would like to open Chromedriver without EULA. the below question solve java version,but I would like to configure with python. How to Start ChromeDriver.exe without EULA? ...
0
votes
0answers
157 views

switching windows fails

What am I doing wrong. Script times out when can not find newly open window. C:/Ruby/lib/ruby/1.9.1/net/protocol.rb:146:in `rescue in rbuf_fill': Timeout::Error (Timeout::Error) from ...
0
votes
0answers
223 views

Close duplicate tabs in chrome using c# or watir

I have a console app that checks for a particular window opened in chrome(specifically chrome only) it runs a 5 second timer to check it again. The issue is that at times the site does not loads in 5 ...
0
votes
0answers
138 views

Can't access Popup with Ruby Watir-webdriver

I can't get popup widow by title. Here is my code and my error message. begin Timeout::timeout(5) do b.frame(:id, "ifContentBody").link(:text, "Filter").click puts b.check_for_http_error() ...
1
vote
0answers
131 views

How to disable location service by chromedriver selenium?

I'm using selenium 2 - Webdriver , Chromedriver, Java. One of my tests needs to turn off the location service on Chrome . I notice that by default, the location service is turned on Chromedriver. ...
2
votes
1answer
608 views

Unable to open more than five Chrome browers with Selenium

I launch the hub and node: java -jar C:\...\selenium-server-standalone-2.25.0.jar -role hub java -jar C:\...\selenium-server-standalone-2.25.0.jar -role node -hub ...
1
vote
1answer
325 views

ruby watir-webdriver cannot access popup

Hi All I am having problems accessing a form with in a popup window that is opened after I click on a link. I appears once I have clicked the link it causes the script to hang and will not even time ...
1
vote
2answers
268 views

Can I use Watir webdriver with Chromium?

I have only managed to execute tests with Google Chrome (using the chromedriver). Can anyone give an example how to start executing tests with Chromium?
1
vote
1answer
906 views

“Element must be user-editable in order to clear it” error

Element must be user-editable in order to clear it (Selenium::WebDriver::Error::InvalidElementStateError) (eval):2:in `attach_file' When I run my feature that has attach_file step in it, it ...

1 2