1

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')

});
Brian
  • 5,069
  • 7
  • 37
  • 47

1 Answers1

3

Just put pause() as the last line of the Testcase

Feature('Login');

Scenario('test', (I) => {
    I.amOnPage('https://google.es')
    pause(); 

});