Skip to content

Commit

Permalink
playing video
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily-ejag committed Mar 22, 2024
1 parent 88cff9f commit b75d04a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cypress/e2e/participant/default-tests/playVideo.cy.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
const timeout = Cypress.env('timeout');
describe('Playing Video', () => {
it('passes', () => {
it('plays-video', () => {
cy.login(Cypress.env('participantUsername'), Cypress.env('participantPassword'));
cy.visit('/', { timeout: 2 * timeout });
cy.selectAdministration(Cypress.env('testRoarAppsAdministration'));
cy.get('.tabview-nav-link-label', { timeout: 2 * timeout })
.contains('ROAR - Word')
.click();
cy.get('.vjs-big-play-button', { timeout: 2 * timeout }).click();
});
});

0 comments on commit b75d04a

Please sign in to comment.