Tagged Questions
2
votes
1answer
435 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
109 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
93 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 ...
2
votes
1answer
157 views
watir-webdriver - chrome and IE change input when setting text_field with special characters
I am trying to insert text into text field. It has some special characters. It turns out to be a problem in Chrome and IE.
browser = Watir::Browser.new :chrome #or :ie
# here are some steps
field = ...
2
votes
1answer
207 views
watir-webdriver ignore error how to
I am using ruby+watir-webdriver to download daily files from a website. Some days there is no data available to download. If data is available a download link is visible on the page and no download ...
2
votes
1answer
174 views
Error of popup box: unable to locate element, using
I wrote this code in console: @b.text_field(:name => 'popupbox[title]').set 'Title'
There was no error, all works.
I wrote this code in step definition: @b.text_field(:name => ...
1
vote
1answer
288 views
watir-webdriver click_no_wait
I have a script that hangs after I click a link. This link launches a popup where the user then selects some options and the clicks the submit button to generate a report. After I click on the link ...
0
votes
0answers
151 views
After script run suceesfully showing errors in command prompt for Chorme & Opera
I run script for simple login
& run that script on chrome
its running properly its allow to login but after completion of script its showing some errors as below
D:\>ruby mz1.rb
...
2
votes
2answers
725 views
Script running on chrome showing errors
I used steps to run chrome script provided on this links its showing error
I Installed chrome driver as steps suggested in below link but its not working
...
1
vote
2answers
389 views
Pop-up stops watir-webdriver script from executing any further
Okay, so I have a script that is supposed to open a pop-up window and do a few operations on that window. I'm running into some trouble where the window opens, but the script stalls until I manually ...
2
votes
1answer
303 views
javascript events - watir-webdriver chromedriver not working?
I've been trying to test Javascript events with watir-webdriver, which seem to all work fine within Firefox and IE however I'm having problems with Chrome.
browser.span(:class, 'over').fire_event ...
6
votes
2answers
1k views
Make headless browser stop loading page
I am using the watir-webdriver ruby gem. It starts the browser (Chrome) and begins to load a page. The page is loading too slowly, and watir-webdriver raises a timeout error. How can I make the ...
0
votes
0answers
674 views
Watir-Webdriver error when attempting to launch the browser
Any one have any ideas on why I might be running into this error? I get it with the latest version of watir-webdriver (0.5.3)
Much appreciated.
irb(main):001:0> require 'watir-webdriver'
=> ...
2
votes
2answers
630 views
Watir/Selenium - Why can I not connect to any browser?
I'm trying for the first time to use Watir for automated browser-based testing. For all browsers I'm interested in testing with (Firefox, Chrome), I encounter timeout errors trying to connect.
Here's ...