Checkboxes
(Watir)
Checkboxes Watir sets or clears checkboxes by looking at the attributes available in the <input type="checkbox"> HTML tag. Common attributes are id and name. For complete list see HTML Elements Supported by Watir. What you see in the web browser: Check ...
|
Forms
(Watir)
Forms Forms aren't visible through the browser, but are used a lot in web applications. To find them, look at the HTML source for <form> tag. Watir can submit forms in a variety of ways. Forms With Buttons Watir can submit buttons on a web ...
|
Links
(Watir)
Updated version of this page is located at https://github.com/zeljkofilipin/watirbook/blob/master/elements/link.md Links You can use Watir to click links in a variety of ways. Watir can click links by looking at the link text you see ...
|
Selection Boxes
(Watir)
Selection Boxes Watir sets or clears an item in a selection box (or dropdown box) by looking at the attributes available in the <select> HTML tag. Common attributes are id and name. For complete list see HTML Elements Supported by Watir. What you ...
|
Ways Available To Identify HTML Element
(Watir)
How? HTML Example Watir Example Comment :action <form action="page.htm"> ie.form(:action, /page/).click Used only for form element, specifies the URL where the form is to be submitted. :after? <a>one</a> <a>two</a> <a>one</a> ie.link(:after?, ie.link ...
|