2
votes
2answers
41 views

How to run cucumber, ruby scripts on iPad simulator

I have run cucumber+ruby+watir scripts on windows, now I want to run those on an iPad as well. Is there any way to do this? Please tell the detailed procedure to do this.
1
vote
2answers
72 views

Using Watir's .click inside of Bootstrap's popover

In Watir I am attempting to access an a element that appears inside of a popover supplied by Bootstrap. Just calling a(:class, 'my_link').click didn't want to play ball, so I added the line a(:class, ...
0
votes
1answer
63 views

Can we automate functional testcases using WATIR for IE in headless mode?

I want to automate a few work flows of my web application using watir-webdriver. I am using Ubuntu. I want to automate all the workflows on IE. As i am using ubuntu as my platform, need to run it in ...
0
votes
1answer
87 views

Using xpath vs span to get elements (one works on IE and Firefox but the other one only in IE)

I am new to Watir framework and we have a code like $browser.link(:xpath, "//a[@href='/servlets/ProcessAction?identifier=createMemberAccountTypes&click1=Accounts_Open']").click . But this ...
2
votes
1answer
136 views

how to detect the jquery UI Dialog box element by using WATIR?

I am very new to using WATIR. I am writing some small scripts to test and its very cool. I have a Jquery UI Dialog box for the User Sign Up. So, the Dialog box has Username text-box, password text-box ...
1
vote
2answers
206 views

How to encapsulate Watir browser instance in a GUI using Ruby?

Basically, I'm programming a testing application for multiple sites using Watir. However, there are end-users (who can be assumed to be the typical user unfamiliar with the command line, using ...
1
vote
1answer
249 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
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
1answer
92 views

How can I write the functions in Cucumber?

How can I write the function in cucumber with watir-webdriver? I mean, I have same code and I don't want always to re-write it. I just want to write this function and then use it. This will help me to ...
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.
0
votes
1answer
841 views

WATIR can't find links or buttons on parent when switching back from iframe

I'm on Ubuntu Linux/Firefox 13 and WATIR. (watir-webdriver-0.6.1) I have a Webpage that contains links to about 16 iframes.. all linked like this.... Clicking "11" will bring up an iframe that has ...
2
votes
1answer
357 views

Safari in watir-webdriver (send_keys) function not working

b.send_keys :tab That line above doesn't work with safari on my mac. I am running watir-webdriver 0.6.1 and selenium-webdriver 2.22.2. I get the following error: Failure/Error: b.send_keys :tab ...
0
votes
1answer
221 views

Watir-WebDriver won't work when hosts file redirects localhost

Hello i'am using windows 7 and i wish to use watir-webdriver with ruby 1.9.2. Please tell me why i get this: C:\>irb irb(main):001:0> require "watir-webdriver" => true irb(main):002:0> ...
2
votes
3answers
229 views

Error with watir trying to match copyright statement

Hi I'm using watir with rspec and am running into problems with the following chunk of code: I cant understand what Im doing wrong. The exact error I get is "syntax error, unexpected $end, expecting ...
1
vote
3answers
799 views

Tips for creating a testing “framework” using Watir?

I'm fairly new to writing test cases and this will be my first major project, but I'm kind of confused on how to design a framework (I know this is not the right word, but I'm not sure that word I'm ...
2
votes
3answers
926 views

Watir can't clear IE security warning

I'm using watir-webdriver to drive IE to test a website using a SSL certificate for another website. (the production version of same website) When I visit my site, I get a page that looks like this ...
0
votes
1answer
546 views

Webdriver/FXDriver utils.js causing 'unresponsive script' error in Firefox

I've got some browser tests that run using Watir webdriver and FXDriver and things are generally working ok. However there is one test that loads a lightbox that contains a lot of HTML, and when the ...