Skip to content

Commit

Permalink
Update openvidu-react-web-tutorial.spec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
IsmailJniah authored Sep 21, 2023
1 parent dd12e42 commit cf296c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/openvidu-react-web-tutorial.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ const browser = await chromium.launch({ headless: true , deviceScaleFactor: 1,
});

const page1 = await context.newPage();
await page1.goto('http://127.0.0.1:3000');
await page1.goto('http://localhost:3000');

await page1.click('#join input[type="submit"]');
await page1.waitForSelector('#session', { visible: true });

const page2 = await context.newPage();

await page2.goto('http://127.0.0.1:3000');
await page2.goto('http://localhost:3000');
//await page2.fill('#sessionId', 'SessionS');
await page2.click('#join input[type="submit"]');
await page2.waitForSelector('#session', { visible: true });
Expand Down

0 comments on commit cf296c5

Please sign in to comment.