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 ...
Ways Available To Identify HTML Tag(Watir)
Ways Available To Identify HTML Tag 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 ...
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 Methods Supported by Element. What you see ...
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 Methods Supported by Element. What you see in the web browser: Check Me ...
Links(Watir)
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 in the browser or by looking at the attributes available in the <a> HTML tag. Common attributes are id, name and href. For complete ...