@@ -8,12 +8,12 @@ Scenario('change config 1 @WebDriverIO @Puppeteer @Playwright', ({ I }) => {
8
8
9
9
Scenario ( 'change config 2 @WebDriverIO @Puppeteer @Playwright' , ( { I } ) => {
10
10
I . amOnPage ( '/' )
11
- I . seeInCurrentUrl ( 'github.com ' )
12
- } ) . config ( { url : 'https://github.com ' } )
11
+ I . seeInCurrentUrl ( 'codecept.io ' )
12
+ } ) . config ( { url : 'https://codecept.io ' } )
13
13
14
14
Scenario ( 'change config 3 @WebDriverIO @Puppeteer @Playwright' , ( { I } ) => {
15
15
I . amOnPage ( '/' )
16
- I . dontSeeInCurrentUrl ( 'github.com ' )
16
+ I . dontSeeInCurrentUrl ( 'codecept.io ' )
17
17
I . seeInCurrentUrl ( 'google.com' )
18
18
} )
19
19
@@ -26,7 +26,7 @@ Scenario('change config 4 @WebDriverIO @Puppeteer @Playwright', ({ I }) => {
26
26
27
27
Scenario ( 'change config 5 @WebDriverIO @Puppeteer @Playwright' , ( { I } ) => {
28
28
I . amOnPage ( '/' )
29
- I . dontSeeInCurrentUrl ( 'github.com ' )
29
+ I . dontSeeInCurrentUrl ( 'codecept.io ' )
30
30
I . seeInCurrentUrl ( 'google.com' )
31
31
} )
32
32
@@ -38,10 +38,10 @@ Scenario('make API call and check response @Playwright', ({ I }) => {
38
38
39
39
Scenario ( 'change config 6 @WebDriverIO @Puppeteer @Playwright' , ( { I } ) => {
40
40
I . amOnPage ( '/' )
41
- I . seeInCurrentUrl ( 'github.com ' )
41
+ I . seeInCurrentUrl ( 'codecept.io ' )
42
42
} ) . config ( async ( ) => {
43
43
await new Promise ( ( r ) => {
44
44
setTimeout ( r , 50 )
45
45
} )
46
- return { url : 'https://github.com ' }
46
+ return { url : 'https://codecept.io ' }
47
47
} )
0 commit comments