"chrome": {
"desiredCapabilities": {
"browserName": "chrome",
"javascriptEnabled": true,
"acceptSslCerts": true,
"chromeOptions": {
"args": ["--start-fullscreen"]
}
}
},
--
You received this message because you are subscribed to the Google Groups "NightwatchJs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nightwatchjs...@googlegroups.com.
To post to this group, send email to nightw...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/nightwatchjs/3699d8ff-be52-46a5-9157-4c284ac565af%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
module.exports = {
before : function(browser) {
browser.maximizeWindow();
},
'Your test Home' : function (browser) {
browser.url(...)
},
after: function(browser) {
browser.end();
}