I am trying to access a site with watir-webdriver, but I can't seem to find a textbox in watir that I can see in Firefox+Firebug.
My code is
require 'rubygems'
require 'irb/completion'
require 'watir-webdriver'
browser = Watir::Browser.new(:firefox)
browser.goto('http://emersonecologics.com/')
browser.text_field(:name, "txtEmail").set("myemail@gmail.com")
I get the error:
Watir::Exception::UnknownObjectException: unable to locate element, using {:type=>"(any text type)", :name=>"txtEmail", :tag_name=>"input or textarea"}
However, I know there is a textbox named txtEmail because Firebug shows me
<input id="txtEmail" class="textbox" type="text" tabindex="1" name="txtEmail">
Of course, it is this textbox is deep inside the tree. So, thinking that I should navigate to it in the DOM, I tried to access the div called 'all'.
If I do
>>browser.divs[1].id
=> "all"
>> browser.divs[1].tag_name
=> "div"
But when I try to get a handle to it as following, it seems I cant locate it.
>>browser.div(:id, "all")
=> #<Watir::Div:0x101a8fd70 located=false selector={:tag_name=>"div", :id=>"all"}>
Can anyone help me how to select objects in the page?