Tagged Questions
1
vote
1answer
210 views
Native Events error trying to double-click element using watir-webdriver
I am writting automatic test for GWT application. And I try to double click on table element. I am using this code fo click:
browser.element(:xpath, ...
8
votes
2answers
227 views
Check if “Please enter an email address” message appears
Given a simple page:
<form>
<input type="email">
<button>click</button>
</form>
If I enter anything in text field that is not e-mail and click the button, Please ...
0
votes
2answers
104 views
How to set the checkbox in the first column based on the value in the second column?
I'm automating a task using Ruby and Watir.
I want to set a checkbox (which is in the first column of a table) based on whether the value in the second column matches my input value. For example, in ...
2
votes
2answers
264 views
Automating Google Soccer 2012
I am trying to automate Google Soccer 2012, just for fun. I did not have any problems automating other Google games.
The problem with Soccer is that it does not react to left and right, but space ...
0
votes
2answers
621 views
Watir-webdriver how to access LAST matching element not first?
On a dynamic web page I don't know the number of matching elements upfront, so I won't know which index # to use.
Does watir-webdriver provide a way to access the LAST matching element, not first as ...
2
votes
2answers
781 views
Export entire html <table> to a text document using Watir
Basically all I would like to do is export a whole html table to a .txt file (notepad document).
So far I have learnt how to instruct the browser to find the html page with the table.
require ...
1
vote
3answers
516 views
Selecting multiple options in select list with shift
I have HMTL like this:
<select multiple="multiple">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option ...
1
vote
1answer
141 views
Select#select does not behave like manually selecting options in select list
If I have HMTL like this:
<select multiple="multiple">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option ...
2
votes
1answer
643 views
Does watir-webDriver support modal_dialogs created via Lightbox?
Is the method modal_dialog supported by watir-webdriver? If not, is there another way for setting some text in a text field and clicking an ok button?
I've tried by putting
...
1
vote
1answer
397 views
watir-webdriver on IE behaves differently then Chrome and FireFox in respect to selecting a value from select list
selectctrl = @browser.select(:xpath, "//select[id='foo']")
selectctrl.select("Open")
in FireFox and Chrome this fires other events in jquery, in IE, you
see the UI change to Open for the select ...
1
vote
2answers
497 views
how can i handle rad window popup by watir script?
How can i handle this type of Rad window pop up by using watir.
<span id="RadWindowTitlectl00_ContentPlaceHolder1_rwmWinManager_rwMessage" class="RadWTitleText" onselectstart="return false;" ...
2
votes
3answers
317 views
Does anyone have or know where I can find good documentation on Watir-Webdriver?
I am trying to get my automated test scripts switched over to the watir-webdriver.
Unfortunately I have been unable to completely do so, what I am looking for is a way to drive my web browser and ...
5
votes
1answer
2k views
Testing if a new window opens with Watir-Webdriver
I'm using Watir-webdriver and I was wondering if there was a good way to check if a new window opens. I've googled around a bit and couldn't find anything though it feels like there should be an easy ...
2
votes
3answers
2k views
Watir-webdriver: Firefox not clicking correct link but IE and Chrome working fine
Question help
Hi I'm new to Ruby and watir-webdriver and I've searched all over and can't find an answer to this.
I have a link that is inside a table, this table has a header on top of the table ...
4
votes
1answer
219 views
How to determine what type of a HTML element is selected in Watir
This is a follow-up to the Counting the number of HTML elements having same attribute in Watir question.
So, suppose I have a HTML element as follows
<input type="password" class="foo" />
...
3
votes
1answer
364 views
Locating element in same paragraph of another element in watir-webdriver
Given the following HTML code snippet; after finding the link by ID, how would you select the checkbox in the same paragraph?
For example if I wanted to select the checkbox associated with the link ...
3
votes
1answer
98 views
1
vote
1answer
966 views
Watir: How can I execute in a watir script a specific javascript function called on select of a checkbox?
In a Watir script, after I check checkboxes in a popup window, I'm trying to execute a javascript function to add objects selected to the parent window.
What works fine until now it is the check of ...
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: ...
1
vote
2answers
216 views
How to invoke watir scripts from a web application?
I have a watir script ,that i have to run from a web interface, on the same browser invoking the scripts. Is it possible?
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 ...
