You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the following scenario, the timeout is failing only after 30000msec
Scenario('Timeout failing',(I)=>{I.amOnPage('http://www.github.com');I.see('Welcome home');I.click('.header-logo-invertocat');I.waitForText('Priced for everyone',2);// should fail after 2 seconds});
codeceptjs run --steps
-- FAILURES:
1) login: Login with user list:
.wait() timed out after 30000msec
Update: If I run
I.wait(1); I.see('Priced for everyone');
then it works.
but if I run only the
I.see('Priced for everyone')
then i got:
(node:47217) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Cannot create property 'stack' on string 'codeceptjs is not defined' ^C%
The text was updated successfully, but these errors were encountered:
With the following scenario, the timeout is failing only after 30000msec
Update: If I run
I.wait(1); I.see('Priced for everyone');
then it works.
but if I run only the
I.see('Priced for everyone')
then i got:
(node:47217) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Cannot create property 'stack' on string 'codeceptjs is not defined' ^C%
The text was updated successfully, but these errors were encountered: