How to handle show notifications pop-up on Chrome in NightwatchJS?
Hi Miro,
If it’s a pop in, you can basically use the setValue function;
// send some simple text to an input
this.demoTest = function (Chrome) {
browser.setValue('#yourInputId', 'nightwatch');
};
Ref: selenium - Input text on browser popup using nightwatch js - Stack Overflow