Improve E2E tests
This commit is contained in:
parent
81c647ff19
commit
60c8b8a5d7
|
@ -12,7 +12,9 @@ exports.config = {
|
||||||
'browserstack.user': process.env.BROWSERSTACK_USER,
|
'browserstack.user': process.env.BROWSERSTACK_USER,
|
||||||
'browserstack.key': process.env.BROWSERSTACK_KEY,
|
'browserstack.key': process.env.BROWSERSTACK_KEY,
|
||||||
'browserstack.local': true,
|
'browserstack.local': true,
|
||||||
project: 'PeerTube'
|
'browserstack.console': 'info',
|
||||||
|
project: 'PeerTube',
|
||||||
|
name: 'Bstack-[Protractor] Parallel Test'
|
||||||
},
|
},
|
||||||
|
|
||||||
multiCapabilities: [
|
multiCapabilities: [
|
||||||
|
|
|
@ -14,7 +14,7 @@ export class VideoWatchPage {
|
||||||
await browser.get(url)
|
await browser.get(url)
|
||||||
|
|
||||||
// Waiting the following element does not work on Safari...
|
// Waiting the following element does not work on Safari...
|
||||||
if (isSafari === true) return browser.sleep(3000)
|
if (isSafari) return browser.sleep(3000)
|
||||||
|
|
||||||
const elem = element.all(by.css('.videos .video-miniature .video-miniature-name')).first()
|
const elem = element.all(by.css('.videos .video-miniature .video-miniature-name')).first()
|
||||||
return browser.wait(browser.ExpectedConditions.visibilityOf(elem))
|
return browser.wait(browser.ExpectedConditions.visibilityOf(elem))
|
||||||
|
@ -84,13 +84,12 @@ export class VideoWatchPage {
|
||||||
}
|
}
|
||||||
|
|
||||||
async clickOnFirstVideo () {
|
async clickOnFirstVideo () {
|
||||||
const video = element.all(by.css('.videos .video-miniature .video-thumbnail')).first()
|
const video = element.all(by.css('.videos .video-miniature .video-miniature-name')).first()
|
||||||
const videoName = element.all(by.css('.videos .video-miniature .video-miniature-name')).first()
|
|
||||||
|
|
||||||
// Don't know why but the expectation fails on Safari
|
// Don't know why but the expectation fails on Safari
|
||||||
await browser.wait(browser.ExpectedConditions.elementToBeClickable(video))
|
await browser.wait(browser.ExpectedConditions.elementToBeClickable(video))
|
||||||
|
|
||||||
const textToReturn = videoName.getText()
|
const textToReturn = video.getText()
|
||||||
await video.click()
|
await video.click()
|
||||||
|
|
||||||
await browser.wait(browser.ExpectedConditions.urlContains('/watch/'))
|
await browser.wait(browser.ExpectedConditions.urlContains('/watch/'))
|
||||||
|
@ -106,7 +105,7 @@ export class VideoWatchPage {
|
||||||
}
|
}
|
||||||
|
|
||||||
async goOnP2PMediaLoaderEmbed () {
|
async goOnP2PMediaLoaderEmbed () {
|
||||||
return browser.get('https://peertube2.cpy.re/videos/embed/969bf103-7818-43b5-94a0-de159e13de50?mode=p2p-media-loader')
|
return browser.get('https://peertube2.cpy.re/videos/embed/969bf103-7818-43b5-94a0-de159e13de50')
|
||||||
}
|
}
|
||||||
|
|
||||||
async clickOnUpdate () {
|
async clickOnUpdate () {
|
||||||
|
|
|
@ -53,6 +53,10 @@ describe('Videos workflow', () => {
|
||||||
if (await isSafari()) {
|
if (await isSafari()) {
|
||||||
console.log('Safari detected.')
|
console.log('Safari detected.')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!await isMobileDevice()) {
|
||||||
|
await browser.driver.manage().window().maximize()
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Should log in', async () => {
|
it('Should log in', async () => {
|
||||||
|
|
Loading…
Reference in New Issue