Tagged Questions
1
vote
1answer
32 views
Is there a way to highlight element with Watir?
I keep getting errors doing this:
puts browser.table(:after? => span(:text => "Asmeniniai duomenys") )[2][2].text
basically saying:
undefined method `span' for main:Object (NoMethodError)
...
3
votes
2answers
79 views
Extracting values from a login accessible web page post-javascript using Ruby
I have a stock trading website that is only accessible after logging into the site. After logging in, there is a stock value that I am trying to extract. That number is not readily available and takes ...
0
votes
1answer
84 views
Changing value of hidden element
How do I click a hidden checkbox and/or change the value of a hidden element (from "2" to "1") using ruby and watir?
The html
[div class="spec"]
[span class="listheader"]Rechtsgebieden[/span]
...
1
vote
1answer
122 views
Verify HTML Element within Another Element — Watir WebDriver
I'm looking for the best way to validate an element within another element using Watir WebDriver. Example: I want to verify that the span below is is found within the anchor that contains it.
...
1
vote
1answer
55 views
How might I read (parse) html directly from a file using Watir?
I can already do this with Nokogiri of course
doc = Nokogiri::HTML(src)
where src is a text column in my database.
But I really like Watir's search interface for developers over Nokogiri.
There's ...
1
vote
1answer
106 views
Watir webdriver rows performance
I am trying to zero in on a specific row on a webpage using watir-webdriver. The code I use is pretty straightforward:
b = Watir::Browser.new
frame = b.frames.first
frame.tables[3].rows[2].flash
...
1
vote
1answer
244 views
How to get value of a hidden element? (Watir)
just wondering, how can I get the value of a hidden element using watir? This is the element:
<input type="hidden" value="randomstringhere" id="elementid" name="elementname" />
And this is my ...
0
votes
1answer
134 views
looking for element always returns false in Watir-Classic
<div class="wizardPanel box cf" id="wizardPanel">
<p class="validation-msg error visually-hidden" id="error0"><span data-icon="warn"></span>Your departure and arrival cites ...
0
votes
0answers
105 views
How to save entire html response to text file line by line using ruby watir [closed]
I need to solution to save the entire HTML response to a text file line by line. I have a html response where there is no way to identify any element in it. Basically it is just on Body and cant spy ...
-1
votes
1answer
156 views
How to extract a value which does not have any attribute in ruby watir
I have a response page where some text is present. There are no attribute based on which I can get the required text from response. Can some one please write me a code to do the same. I have attached ...
2
votes
2answers
380 views
Using Watir to click a table element
Javascrpit button I'd like to click athough it's in a table:
<table>
<tr>
<td height="20" align="center" nowrap style="color:#0000FF; cursor:pointer; border: 1 solid #426996; ...
3
votes
1answer
243 views
How to read value from a text file in ruby using watir based on position
Can some one please help me write a code in Ruby using Watir so that I can read any value from a given text file based on position and use it as parameter for any field in a web application.
I am new ...
1
vote
1answer
184 views
Accessing inner text of a div returning empty string
I'm trying to extract the answer text on the following webpage. I opened up the DOM inspector and got the class of the text as "answer_content". I've defined a method that looks like:
def ...
0
votes
1answer
65 views
How to select from dynamic drop downs in watir
I am trying to automate login. It generates a list of databases based on username and password.
I tried something like
Browser.text_field(:id,"comboDatabase").when_present.set "(tas01) jazz tst DSS ...
1
vote
2answers
1k views
How to get index of parent element using Watir Webdriver?
I have this HTMLcode:
<div class="A">
<div class="B">
Text1
</div>
</div>
<div class="A">
<div class="B">
Text2
</div>
</div>
So i ...
2
votes
3answers
2k views
Retrieve <TD> text using WATIR
I am using WATIR for automated testing, and I need to copy in a variable the value of a rate. In the example below (from webpage source code), I need that variable myrate has value 2.595. I know how ...
3
votes
3answers
368 views
how to recursively search for a text field with WATIR
I am trying to automate a web page using IE and Watir.
When I load the page with chrome and use development tools I can identify the field I need to fill, complete with its id and name.
Watir, ...
3
votes
3answers
545 views
Search underlined link in watir
I am trying to search/select a link in a page that is underlined, while others are not. The source is something like this:
<a href="someurl1">
<b>
<u>Some ulined text</u>
...
1
vote
3answers
587 views
Watir: How do I execute a JS function which is called through onload through an iframe?
The goal is to have Watir click a button that functions purely through JS.
The main page has an iframe that looks similar to this:
<iframe name="uploadfile" id="uploadfile" src="form1.html" ...
3
votes
2answers
324 views
visual analysis of web pages in ruby
I'm looking to write some code that does visual analysis of web pages, preferably using Ruby. My code will need to be able to determine the top, left, width, height, background color, color, and font ...
1
vote
2answers
2k views
How to click a button element in watir?
Can I write watir code to click this button element?
The onclick event has to be triggered.
<button onclick="wizardAction('start', 'Starte Upgrade')">
<table align="center" ...
1
vote
1answer
704 views
Cannot select radio button that was added by JavaScript in watir
This was added to the page later with jQuery:
<input name="pdfRadio" id="pdfRadioNo0" value="0" type="radio">
This code:
radio_id = "pdfRadioNo0"
ie.radio(:id, radio_id).set()
does not set ...
-1
votes
1answer
643 views
How can I click a link using it's HTML with Watir
I have a link that looks like this:
<a href="#" onclick="new Ajax.Request('/data_entry/ajax_add_term/131?contract_id=227', {asynchronous:true, evalScripts:true}); return false;">add a ...
1
vote
2answers
585 views
How to access element with custom attribute using Watir?
I have HTML that looks like this:
<input custom_attribute="so cool" type="text" />
I would like to enter text in it using Watir.
4
votes
1answer
3k views
How can I get value of element custom attribute with Watir
I have HTML that looks like this:
<input custom_attribute="so cool" type="text" />
I would like to get value of custom_attribute using Watir.
2
votes
1answer
2k views
Get Elements By Attributes
i will be short.
As far as i know watir library provides two methods for getting html elements.
Almost for each element (div, button, table, li, etc) watir provides two methods:
. One is the ...
