aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/e2e/src/po/my-account.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/e2e/src/po/my-account.ts')
-rw-r--r--client/e2e/src/po/my-account.ts10
1 files changed, 9 insertions, 1 deletions
diff --git a/client/e2e/src/po/my-account.ts b/client/e2e/src/po/my-account.ts
index 49db789fb..6d0d8d61e 100644
--- a/client/e2e/src/po/my-account.ts
+++ b/client/e2e/src/po/my-account.ts
@@ -1,4 +1,4 @@
1import { by, element } from 'protractor' 1import { by, element, browser } from 'protractor'
2 2
3export class MyAccountPage { 3export class MyAccountPage {
4 4
@@ -52,6 +52,14 @@ export class MyAccountPage {
52 return element(by.css('.playlist-info .miniature-thumbnail')).click() 52 return element(by.css('.playlist-info .miniature-thumbnail')).click()
53 } 53 }
54 54
55 async goOnAssociatedPlaylistEmbed () {
56 let url = await browser.getCurrentUrl()
57 url = url.replace('/videos/watch/playlist/', '/video-playlists/embed/')
58 url = url.replace(':3333', ':9001')
59
60 return browser.get(url)
61 }
62
55 // My account Videos 63 // My account Videos
56 64
57 private getVideoElement (name: string) { 65 private getVideoElement (name: string) {