Guest User

Untitled

a guest
Dec 12th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. 'Opening site using Selenium': function (browser) {
  2. browser
  3. .url('https://my_site.com')
  4. .waitForElementPresent('body', 200000, 'URL %s open');
  5.  
  6. "desiredCapabilities": {
  7.  
  8. "browserName": "chrome",
  9. "acceptSslCerts": true,
  10. "javascriptEnabled": true,
  11. "acceptInsecureCerts": true,
  12. "disablewebsecurity": true,
  13. "allowrunninginsecurecontent": true,
  14. "cssSelectorsEnabled": true
Add Comment
Please, Sign In to add comment