blob: 34f916b55ee00db75f8eb7eab9d5567b9c34b95f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
import { join } from 'path'
export class VideoUploadPage {
async navigateTo () {
await $('.header .publish-button').click()
await $('.upload-video-container').waitForDisplayed()
}
async uploadVideo () {
const fileToUpload = join(__dirname, '../../fixtures/video.mp4')
const fileInputSelector = '.upload-video-container input[type=file]'
const parentFileInput = '.upload-video-container .button-file'
// Avoid sending keys on non visible element
await browser.execute(`document.querySelector('${fileInputSelector}').style.opacity = 1`)
await browser.execute(`document.querySelector('${parentFileInput}').style.overflow = 'initial'`)
await browser.pause(1000)
const elem = await $(fileInputSelector)
await elem.chooseFile(fileToUpload)
// Wait for the upload to finish
await browser.waitUntil(async () => {
const actionButton = this.getSecondStepSubmitButton().$('.action-button')
const klass = await actionButton.getAttribute('class')
return !klass.includes('disabled')
})
}
async validSecondUploadStep (videoName: string) {
const nameInput = $('input#name')
await nameInput.clearValue()
await nameInput.setValue(videoName)
await this.getSecondStepSubmitButton().click()
return browser.waitUntil(async () => {
return (await browser.getUrl()).includes('/w/')
})
}
private getSecondStepSubmitButton () {
return $('.submit-container my-button')
}
}
|