anahorn

Selenium WebDriver Ruby: Part 7 (Select Boxes) 1

Jun 4th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.52 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>Testing with Ruby and Selenium WebDriver</title>
  4. </head>
  5.  
  6. <img src="images/freebsd_daemon.jpg">
  7. <h2>Version 1.0</h2><h1>Test Automation Training</h1><h3>Testing select boxes</h3>
  8. <form action="page1" method="post">
  9. <select name="dropdown" multiple="multiple" size="2">
  10.   <option value="1">Volvo</option>
  11.   <option value="2">Saab</option>
  12.   <option value="3">Mercedes</option>
  13.   <option value="4">Audi</option>
  14. </select>
  15.     <p><Input type="submit" value="submit"></p></form>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment