aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/e2e/src/po/player.po.ts
blob: cb148a00339e5a3a185b572f771a055ae5649b9c (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                        


                         



                                           







                                                                                        
                             
                                                        



                                                                    
                                                 








                                                                                  





                                                                                                          
                            













                                                                                   
import { browser, by, element } from 'protractor'
import { browserSleep, isIOS, isMobileDevice, isSafari } from '../utils'

export class PlayerPage {

  async getWatchVideoPlayerCurrentTime () {
    const elem = element(by.css('video'))

    return elem.getAttribute('currentTime')
  }

  waitUntilPlaylistInfo (text: string) {
    const elem = element(by.css('.video-js .vjs-playlist-info'))

    return browser.wait(browser.ExpectedConditions.textToBePresentInElement(elem, text))
  }

  waitUntilPlayerWrapper () {
    const elem = element(by.css('#placeholder-preview'))

    return browser.wait(browser.ExpectedConditions.presenceOf(elem))
  }

  async playAndPauseVideo (isAutoplay: boolean) {
    const videojsEl = element(by.css('div.video-js'))
    await browser.wait(browser.ExpectedConditions.elementToBeClickable(videojsEl))

    // Autoplay is disabled on iOS and Safari
    if (await isIOS() || await isSafari() || await isMobileDevice()) {
      // We can't play the video using protractor if it is not muted
      await browser.executeScript(`document.querySelector('video').muted = true`)
      await this.clickOnPlayButton()
    } else if (isAutoplay === false) {
      await this.clickOnPlayButton()
    }

    await browserSleep(2000)
    await browser.wait(browser.ExpectedConditions.invisibilityOf(element(by.css('.vjs-loading-spinner'))))

    await browserSleep(2000)

    await videojsEl.click()
  }

  async playVideo () {
    return this.clickOnPlayButton()
  }

  private async clickOnPlayButton () {
    const playButton = element(by.css('.vjs-big-play-button'))
    await browser.wait(browser.ExpectedConditions.elementToBeClickable(playButton))
    await playButton.click()
  }
}