I´m new to CodeceptJS
with Puppeteer
. I want to let my window browser open after the finish.
Feature('Login');
Scenario('test', (I) => {
I.amOnPage('https://google.es')
});
I´m new to CodeceptJS
with Puppeteer
. I want to let my window browser open after the finish.
Feature('Login');
Scenario('test', (I) => {
I.amOnPage('https://google.es')
});
Just put pause() as the last line of the Testcase
Feature('Login');
Scenario('test', (I) => {
I.amOnPage('https://google.es')
pause();
});