1
0
Fork 0

Clean up E2E tests

This commit is contained in:
Chocobozzz 2018-05-24 14:33:58 +02:00
parent 108a66f0da
commit b528582df2
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 4 additions and 9 deletions

View File

@ -1,4 +1,4 @@
import { by, element, browser } from 'protractor'
import { browser, by, element } from 'protractor'
export class VideoWatchPage {
async goOnVideosList (isMobileDevice: boolean, isSafari: boolean) {
@ -41,18 +41,13 @@ export class VideoWatchPage {
.then(seconds => parseInt(seconds, 10))
}
async pauseVideo (isAutoplay: boolean, isDesktopSafari: boolean) {
async pauseVideo (isAutoplay: boolean) {
if (isAutoplay === false) {
const playButton = element(by.css('.vjs-big-play-button'))
await browser.wait(browser.ExpectedConditions.elementToBeClickable(playButton))
await playButton.click()
}
// if (isDesktopSafari === true) {
// await browser.sleep(1000)
// await element(by.css('.vjs-play-control')).click()
// }
await browser.sleep(1000)
await browser.wait(browser.ExpectedConditions.invisibilityOf(element(by.css('.vjs-loading-spinner'))))

View File

@ -66,14 +66,14 @@ describe('Videos workflow', () => {
})
it('Should play the video', async () => {
await videoWatchPage.pauseVideo(!isMobileDevice, isSafari && isMobileDevice === false)
await videoWatchPage.pauseVideo(!isMobileDevice)
expect(videoWatchPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2)
})
it('Should watch the associated embed video', async () => {
await videoWatchPage.goOnAssociatedEmbed()
await videoWatchPage.pauseVideo(false, isSafari && isMobileDevice === false)
await videoWatchPage.pauseVideo(false)
expect(videoWatchPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2)
})
})