Tagged Questions
0
votes
1answer
48 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
61 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 ...
1
vote
1answer
66 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
...
2
votes
1answer
107 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 ...
0
votes
4answers
210 views
Automating a File Upload with WATIR in Chrome on OSX
I am attempting to automate a file upload using WATIR. I don't control the website code and the javascript is obfuscated os it has been frustrating to figure out.
I have tried to set the file_field ...
2
votes
1answer
806 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.
...
1
vote
1answer
47 views
Using a var to complete watir agent
I am working on a way to share a Ruby program. This is my test code.
require 'rubygems'
require 'watir-webdriver'
require 'headless'
require 'google_drive'
@browsertype =""
@name =""
@champsname = ...
3
votes
1answer
431 views
Failed to read master_preferences file - Watir
Get this error when trying to drive chrome with watirs web driver ..... ie works fine.
C:\Users\rallen26346>irb
irb(main):001:0> require "watir-webdriver"
=> true
irb(main):003:0> browser ...
1
vote
1answer
56 views
How can I click the button with same id?
I have two buttons with the same id's (everything is identically). If I click it, it choose automaticly the first button, but I need to click the second oder third.
@b.link(:id => "commit").click
...
0
votes
1answer
53 views
When opening a chrome browser, I am getting 'terms of services' window each time
I installed exe file(chromedriver_win_23.0.1240.0.zip ) from:http://code.google.com/p/chromedriver/downloads/list
0
votes
1answer
108 views
How can I sart at the same time more than one (many) cucumber test(s)?
I want to sart at the same time more than one cucumber test with the help of watir-webdriver. How can I get(start) it? Is it possible?
0
votes
2answers
99 views
How to skip an error in cucumber?
How can cucumber skip (ignore) an error without stopping the test? I mean - if an error appears -> the test must be continued.
1
vote
2answers
465 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
1answer
266 views
Skipping slow websites when looping through an array of URLs using watir-webdriver
I'm trying to loop through an array of websites in Chrome using watir-webdriver, but I always encounter an error on certain websites. Recently, I have had this problem with http://adage.com. The loop ...
1
vote
1answer
506 views
How to make Jenkins work with watir-webdriver
I am running a jenkins installation in the cloud and am using Linux Ubuntu Precise Pangolin 64 bit.
I have configured everything properly for ubuntu using the instructions found here (with some ...
0
votes
1answer
340 views
How to close all opened chrome with Watir::Browser or reuse already opened?
The problem is that the app is persistent and works as a layer between client and intranet site. When client does a request, server opens new chrome window with ChromeDriver, authenticates, requests ...
0
votes
1answer
208 views
Some watir-webdriver functionality is missing in chrome
b.driver.manage.window.resize_to(1000, 1000)
That line above doesn't work with chrome on my mac. I am running watir-webdriver 0.6.1 and selenium-webdriver 2.22.2.
I get the following error:
...
0
votes
2answers
1k views
An open modal dialog blocked the operation (Cucumber, Watir-WebDriver, Chrome)
I have a problem:
I make a new group at my network webseit and then I will to delete it. When I make it - I see a new window (JavaScript) and I can nothing doing.
How can I whrite my code if I see ...
2
votes
2answers
342 views
How to backup browser state after Watir automation
Summary of tools:
watir-webdriver 1.8.17
Mac OS X 10.7.3
Chrome 18.0.1025.151
I'm currently using Watir WebDriver to automate Chrome sessions across a number of websites. I need to backup the ...
1
vote
2answers
312 views
prevent watir-webdriver running chrome as a first run
Everytime I use watir-webdriver to initialise a chrome browser instance, it launches as a first-run with an EULA pop-up and an additional getting-started tab open.
Both of these side-effects are ...
1
vote
2answers
493 views
Watir Webdriver - Changing proxy on google chrome
I'm trying to access web from watir webdriver through proxy. Can be HTTP or SOCKS
Here is my code so far. I found sample (last 3 lines), but it gives me error:
irb
require "watir-webdriver"
browser ...
1
vote
1answer
243 views
How can we run automated tests using webdriver in chrome to test an app which should also work in offline mode?
I have tried adding ' profile['network.manage-offline-status'] = true' but this doesn't seem to be turning the chrome browser to offline mode
profile = ...
1
vote
2answers
3k views
'--ignore-certificate-errors' switch is not working for Chrome 15
I have an issue with automating Chrome 15.
If I start Chrome from ruby script with --ignore-certificate-errors switch, I still get certificate error prompt.
I start chrome with next command
...
1
vote
2answers
782 views
Watir-WebDriver HTTP Code
So I'm using Watir WebDriver with both Firefox and Chrome. Chrome is much faster but seems to have a number of eccentricities. First, in Firefox when I use something like:
ff.link(:text, "Click ...
1
vote
2answers
893 views
Error using ChromeDriver when kicked off from teamcity
I was having trouble with firefox for my watir-webdriver tests and decided to move over to CHROME. This runs fine local dev box, however when kicked off from team city on our qa server I get the ...
1
vote
1answer
401 views
Watir-webdriver: Chrome unhandled error on site where IE and Firefox working fine
So I think this might be an error with the ChromeDriver but wanted to ask here first.
I'm having trouble using just about every webdriver function with chrome, yet IE and Firefox is working fine.
...
1
vote
2answers
628 views
Watir won't choose the files I need to upload
Part of my watir script tests an upload form. I can get the upload box to open, but it won't navigate to the folder and choose the file I want. Instead, the script will crash and give this error:
No ...
1
vote
1answer
861 views
Watir-webdriver : text.include?(“expected text”) doesn't work in chrome browser
I use watir-webdriver for testing in Mac OS. As it is all to known that $browser.text.include?("expected text") is used to assert the text in the screen.
Currently this method works fine in Firefox ...
0
votes
2answers
3k views
Install Chrome Driver
I've downloaded the chrome driver for Win 7 32-bit OS. On executing .exe file, a command prompt opens with the message Started ChromeDriver port=9515 I tried running this code, but chrome doesn't ...
4
votes
3answers
2k views
Is there an alternative to watir::ie.attach for watir-webdriver since attach is not supported on webdriver
I have a website which is only rendered in Webkit enabled browser (Google Chrome, Safari). I am using Google Chrome since I am on Windows 7.
I am using Watir-WebDriver to automate the same.
Issue: ...
3
votes
1answer
975 views
Is there a way to NOT open a new window every time I click on a link on Chrome, using watir-webdriver
I am trying to using Google Chrome to automate my testing of a mobile app developed in JavaScript for iPhone, and since it is Webkit based only Safari and Google Chrome can render the content, so I ...
