diff options
author | Chocobozzz <me@florianbigard.com> | 2021-05-27 16:12:41 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-05-27 16:12:41 +0200 |
commit | 8f608a4cb22ab232cfab20665050764b38bac9c7 (patch) | |
tree | 6a6785aae79bf5939ad7b7a50a1bd8031268d2b4 /client/e2e | |
parent | 030ccfce59a8cb8f2fee6ea8dd363ba635c5c5c2 (diff) | |
parent | c215e627b575d2c4085ccb222f4ca8d0237b7552 (diff) | |
download | PeerTube-8f608a4cb22ab232cfab20665050764b38bac9c7.tar.gz PeerTube-8f608a4cb22ab232cfab20665050764b38bac9c7.tar.zst PeerTube-8f608a4cb22ab232cfab20665050764b38bac9c7.zip |
Merge branch 'develop' into shorter-URLs-channels-accounts
Diffstat (limited to 'client/e2e')
-rw-r--r-- | client/e2e/src/po/video-upload.po.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/client/e2e/src/po/video-upload.po.ts b/client/e2e/src/po/video-upload.po.ts index 942025b6b..ad2acee7f 100644 --- a/client/e2e/src/po/video-upload.po.ts +++ b/client/e2e/src/po/video-upload.po.ts | |||
@@ -26,7 +26,12 @@ export class VideoUploadPage { | |||
26 | await elem.sendKeys(fileToUpload) | 26 | await elem.sendKeys(fileToUpload) |
27 | 27 | ||
28 | // Wait for the upload to finish | 28 | // Wait for the upload to finish |
29 | await browser.wait(browser.ExpectedConditions.elementToBeClickable(this.getSecondStepSubmitButton())) | 29 | await browser.wait(async () => { |
30 | const actionButton = this.getSecondStepSubmitButton().element(by.css('.action-button')) | ||
31 | |||
32 | const klass = await actionButton.getAttribute('class') | ||
33 | return !klass.includes('disabled') | ||
34 | }) | ||
30 | } | 35 | } |
31 | 36 | ||
32 | async validSecondUploadStep (videoName: string) { | 37 | async validSecondUploadStep (videoName: string) { |