1
vote
1answer
120 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. ...
3
votes
1answer
116 views

Watir: How do I find an element where the class of that element and the class of one of its parents identifies it?

I've got html like <div class="header"><div class="title">AAAAAAAAA</div></div> <div class="body"> <div class="card"><div class="xxx"><div ...
0
votes
1answer
133 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 ...
4
votes
2answers
180 views

Watir/Selenium2 Nothing happens after clicking on an element inside iframe in Internet Explorer 9

I'm writing autotests with Watir-WebDriver and Ruby 1.9.2 on Ubuntu for the web. I have some iframe with several elements. I need to click on the items and check what happens. The <iframe> looks ...
0
votes
1answer
89 views

How do I locate an element that is a grandchild of another element by its text with watir-webdriver?

I have some HTML like this: <ul id="directory"> <li><a id="first" href="/first">first</a></li> <li><a id="second" ...
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 ...
0
votes
1answer
121 views

Select_list not working with Watir

I am using safariwatir and I can't seem to get my code to work on selecting an option from a list. the syntax i used to select is: browser.select_list(:id," select").select_value("USA") Here is the ...
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
543 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> ...