Guest User

Untitled

a guest
Jun 22nd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. binary_location = {"chromeOptions": {"binary": "path/to/electron/application"}}
  2.  
  3. *** Settings ***
  4.  
  5. Library Selenium2Library run_on_failure=Log Source
  6.  
  7. Variables vars.py
  8.  
  9. *** Test Cases ***
  10.  
  11. Foo
  12.  
  13. Create Webdriver Remote desired_capabilities=${binary_location} command_executor=http://localhost:9515
  14.  
  15. Sleep 15s
  16.  
  17. Click Element password
  18.  
  19. #password is the id of the textfield
  20.  
  21. Input Text password 1234
  22.  
  23. [Teardown] Close All Browsers
  24.  
  25. binary_location = {"browserName": "chrome", "chromeOptions": {"binary": "path/to/electron/application"}}
Add Comment
Please, Sign In to add comment