diff options
Diffstat (limited to 'client/e2e/src/po')
-rw-r--r-- | client/e2e/src/po/my-account.ts | 11 | ||||
-rw-r--r-- | client/e2e/src/po/player.po.ts | 6 | ||||
-rw-r--r-- | client/e2e/src/po/video-upload.po.ts | 2 |
3 files changed, 16 insertions, 3 deletions
diff --git a/client/e2e/src/po/my-account.ts b/client/e2e/src/po/my-account.ts index a39e5cc58..0255cee16 100644 --- a/client/e2e/src/po/my-account.ts +++ b/client/e2e/src/po/my-account.ts | |||
@@ -16,8 +16,15 @@ export class MyAccountPage { | |||
16 | 16 | ||
17 | // My account Videos | 17 | // My account Videos |
18 | 18 | ||
19 | removeVideo (name: string) { | 19 | async removeVideo (name: string) { |
20 | return this.getVideoElement(name).element(by.css('my-delete-button')).click() | 20 | const container = this.getVideoElement(name) |
21 | |||
22 | await container.element(by.css('.dropdown-toggle')).click() | ||
23 | |||
24 | const dropdownMenu = container.element(by.css('.dropdown-menu .dropdown-item:nth-child(2)')) | ||
25 | await browser.wait(browser.ExpectedConditions.presenceOf(dropdownMenu)) | ||
26 | |||
27 | return dropdownMenu.click() | ||
21 | } | 28 | } |
22 | 29 | ||
23 | validRemove () { | 30 | validRemove () { |
diff --git a/client/e2e/src/po/player.po.ts b/client/e2e/src/po/player.po.ts index d18d81f16..1bba11171 100644 --- a/client/e2e/src/po/player.po.ts +++ b/client/e2e/src/po/player.po.ts | |||
@@ -16,6 +16,12 @@ export class PlayerPage { | |||
16 | return browser.wait(browser.ExpectedConditions.textToBePresentInElement(elem, text)) | 16 | return browser.wait(browser.ExpectedConditions.textToBePresentInElement(elem, text)) |
17 | } | 17 | } |
18 | 18 | ||
19 | waitUntilPlayerWrapper () { | ||
20 | const elem = element(by.css('#video-wrapper')) | ||
21 | |||
22 | return browser.wait(browser.ExpectedConditions.presenceOf(elem)) | ||
23 | } | ||
24 | |||
19 | async playAndPauseVideo (isAutoplay: boolean) { | 25 | async playAndPauseVideo (isAutoplay: boolean) { |
20 | const videojsEl = element(by.css('div.video-js')) | 26 | const videojsEl = element(by.css('div.video-js')) |
21 | await browser.wait(browser.ExpectedConditions.elementToBeClickable(videojsEl)) | 27 | await browser.wait(browser.ExpectedConditions.elementToBeClickable(videojsEl)) |
diff --git a/client/e2e/src/po/video-upload.po.ts b/client/e2e/src/po/video-upload.po.ts index 9eb1e31c1..7de715a95 100644 --- a/client/e2e/src/po/video-upload.po.ts +++ b/client/e2e/src/po/video-upload.po.ts | |||
@@ -4,7 +4,7 @@ import { join } from 'path' | |||
4 | 4 | ||
5 | export class VideoUploadPage { | 5 | export class VideoUploadPage { |
6 | async navigateTo () { | 6 | async navigateTo () { |
7 | await element(by.css('.header .upload-button')).click() | 7 | await element(by.css('.header .publish-button')).click() |
8 | 8 | ||
9 | return browser.wait(browser.ExpectedConditions.visibilityOf(element(by.css('.upload-video-container')))) | 9 | return browser.wait(browser.ExpectedConditions.visibilityOf(element(by.css('.upload-video-container')))) |
10 | } | 10 | } |