Skip to content

Commit

Permalink
Change User1 to User2
Browse files Browse the repository at this point in the history
  • Loading branch information
IsmailJniah committed Apr 19, 2024
1 parent e2ec6e7 commit b9fe530
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/openvidu-recording-node-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ jobs:
- uses: actions/upload-artifact@v4
if: always()
with:
name: results
name: results-node-tutorial
path: /home/runner/work/openvidu-tutorials-tests-playwright/openvidu-tutorials-tests-playwright/results/
retention-days: 30
4 changes: 2 additions & 2 deletions tests/openvidu-js-screen-share-tutorial.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ test('Checking for the presence of two active webcams in an OpenVidu session', a
await page1.goto('http://localhost:8080');

// Fill in the '#userName' field with 'Page1', click the 'JOIN' button, and wait for the '#session' element to become visible.
await page1.fill('#userName', 'Page1');
await page1.fill('#userName', 'User1');
await page1.click('#join input[type="submit"]');
await page1.waitForSelector('#session', { visible: true });
await page1.waitForTimeout(5000);
Expand All @@ -35,7 +35,7 @@ test('Checking for the presence of two active webcams in an OpenVidu session', a
await page2.goto('http://localhost:8080');

// Fill in the '#userName' field with 'Page2', click the 'JOIN' button, wait for the '#buttonScreenShare' element to become visible, and click it.
await page2.fill('#userName', 'Page2');
await page2.fill('#userName', 'User2');
await page2.click('#join input[type="submit"]');
await page2.waitForSelector('#buttonScreenShare', { state: 'visible' });
await page2.click('#buttonScreenShare');
Expand Down
4 changes: 2 additions & 2 deletions tests/openvidu-js-web-tutorial.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test('Checking for the presence of two active webcams in an OpenVidu session', a
await page1.goto('http://localhost:8080');

// Fill in the '#userName' field with 'Page1', click the 'JOIN' button, and wait for the '#session' element to become visible.
await page1.fill('#userName', 'Page1');
await page1.fill('#userName', 'User1');
await page1.click('#join input[type="submit"]');
await page1.waitForSelector('#session', { visible: true });
await page1.waitForTimeout(5000);
Expand All @@ -44,7 +44,7 @@ test('Checking for the presence of two active webcams in an OpenVidu session', a
await page2.goto('http://localhost:8080');

// Fill in the '#userName' field with 'Page2', click the 'JOIN' button, wait for the '#session' element to become visible, and wait for 5 seconds.
await page2.fill('#userName', 'Page2');
await page2.fill('#userName', 'User2');
await page2.click('#join input[type="submit"]');
await page2.waitForSelector('#session', { visible: true });
await page2.waitForTimeout(5000);
Expand Down
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 @@ -26,7 +26,7 @@ test('Checking for the presence of two active webcams in an OpenVidu session', a
await page1.goto('http://localhost:3000');

// Fill in the '#userName' field with 'Page1', click the 'JOIN' button, and wait for the '#session' element to become visible.
await page1.fill('#userName', 'Page1');
await page1.fill('#userName', 'User1');
await page1.click('#join input[type="submit"]');
await page1.waitForSelector('#session', { visible: true });
await page1.waitForTimeout(5000);
Expand All @@ -38,7 +38,7 @@ test('Checking for the presence of two active webcams in an OpenVidu session', a
await page2.goto('http://localhost:3000');

// Fill in the '#userName' field with 'Page2', click the 'JOIN' button, wait for the '#session' element to become visible, and wait for 5 seconds.
await page2.fill('#userName', 'Page2');
await page2.fill('#userName', 'User2');
await page2.click('#join input[type="submit"]');
await page2.waitForSelector('#session', { visible: true });
await page2.waitForTimeout(5000);
Expand Down

0 comments on commit b9fe530

Please sign in to comment.