No magic here:

ie = Watir::IE.start("http://internal.web.project";)
        
ie.text_field(:name, "txtUserName").set("myname")
ie.text_field(:name, "txtPassword").set("mypass")
ie.button(:value, "Anmelden").click

ie.goto("http://internal.web.project/subpage";)
ie.text_field(:name, "txtKurzname").set("xyz")
ie.button(:name, "btnSubmit").click
        
ie.link(:text, "5002287156").click
ie.button(:value, /eu/i).click
        
ie.text_field(:name, "txt_Firma1").set("Irgendein Name")
ie.button(:name, /btnSave/i).click_no_wait # <-- Exception thrown

I followed every tutorial/sample I could find on the web.
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=5137&messageID=14285#14285
_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general

Reply via email to