Tagged Questions
2
votes
1answer
344 views
Cucumber headless xvfb ubuntu
I'm trying to setup a Jenkins build server on Amazon EC2. I'm planning on running my cucumber test suite in headless mode.
I was successfully able to run headless in IRB
require 'watir-webdriver'
...
1
vote
1answer
250 views
Dummy UI or how to run sikuli in headless mode
I'm doing test automation when I faced a problem a digest authentication I'm using watir for my automation, watir couldn't access the alert window which demands username and password, watir with its ...
0
votes
2answers
173 views
multiple headless firefox instances using watir-webdriver within rails application
I have a simple rails application written for scrapping a web page. The controller calls the scrapper utility in which I am using firefox in headless mode using watir-webdriver. The application works ...
4
votes
3answers
557 views
How to enter password in a popup using watir?
I'm writing some watir test cases:
browser.goto "http://egauge2592.egaug.es/"
browser.link(:href,"/settings.html").click
browser.text_field(:index,4).set("some text")
...
0
votes
0answers
218 views
headless watir-webdriver basic auth
I'm new to Watir and Watir-webdriver (as of a couple of weeks ago), and I'm trying to find a way to test a site headless with basic auth.
The most common solution for running Watir-webdriver headless ...
0
votes
1answer
661 views
Switched from Firefox to HTMLUnit in watir-webdriver. Now all my tests fail. How can I start tracking down why?
All of my automation is in watir-webdriver. I used to configure my browser as Firefox, like so:
@profile = Selenium::WebDriver::Firefox::Profile.new
@profile.native_events = false
@client = ...
0
votes
1answer
398 views
watir-webdriver - load a Profile using headless gem
The goal would be to set the profile the same way as in a regular Browser object,
$browser = Watir::Browser.new b, :profile => profile
Is it possible to load a firefox Profile using the
headless ...