Guest User

Untitled

a guest
Jan 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. *** Variables ***
  2. ${browser} chrome
  3.  
  4. *** Settings ***
  5. Library Selenium2Library
  6. Library Dialogs
  7.  
  8. Suite Setup open browser about:blank ${browser}
  9. Suite Teardown Close all browsers
  10.  
  11. *** Test Cases ***
  12. Example
  13. go to http://materializecss.com/forms.html
  14. execute javascript
  15. ... document.getElementById('date-picker').scrollIntoView(true);
  16. execute javascript
  17. ... $('#birthdate').pickadate('picker').set('select', [2018, 3, 1])
  18. pause execution Is the date set?
Add Comment
Please, Sign In to add comment