@@ -8,12 +8,12 @@ Scenario('change config 1 @WebDriverIO @Puppeteer @Playwright', ({ I }) => {
88
99Scenario ( 'change config 2 @WebDriverIO @Puppeteer @Playwright' , ( { I } ) => {
1010 I . amOnPage ( '/' )
11- I . seeInCurrentUrl ( 'github.com ' )
12- } ) . config ( { url : 'https://github.com ' } )
11+ I . seeInCurrentUrl ( 'codecept.io ' )
12+ } ) . config ( { url : 'https://codecept.io ' } )
1313
1414Scenario ( 'change config 3 @WebDriverIO @Puppeteer @Playwright' , ( { I } ) => {
1515 I . amOnPage ( '/' )
16- I . dontSeeInCurrentUrl ( 'github.com ' )
16+ I . dontSeeInCurrentUrl ( 'codecept.io ' )
1717 I . seeInCurrentUrl ( 'google.com' )
1818} )
1919
@@ -26,7 +26,7 @@ Scenario('change config 4 @WebDriverIO @Puppeteer @Playwright', ({ I }) => {
2626
2727Scenario ( 'change config 5 @WebDriverIO @Puppeteer @Playwright' , ( { I } ) => {
2828 I . amOnPage ( '/' )
29- I . dontSeeInCurrentUrl ( 'github.com ' )
29+ I . dontSeeInCurrentUrl ( 'codecept.io ' )
3030 I . seeInCurrentUrl ( 'google.com' )
3131} )
3232
@@ -38,10 +38,10 @@ Scenario('make API call and check response @Playwright', ({ I }) => {
3838
3939Scenario ( 'change config 6 @WebDriverIO @Puppeteer @Playwright' , ( { I } ) => {
4040 I . amOnPage ( '/' )
41- I . seeInCurrentUrl ( 'github.com ' )
41+ I . seeInCurrentUrl ( 'codecept.io ' )
4242} ) . config ( async ( ) => {
4343 await new Promise ( ( r ) => {
4444 setTimeout ( r , 50 )
4545 } )
46- return { url : 'https://github.com ' }
46+ return { url : 'https://codecept.io ' }
4747} )
0 commit comments