This commit is contained in:
Girish Ramakrishnan 2021-06-02 20:17:59 -07:00
parent 0bd81a757e
commit 12bcc926d2

View file

@ -125,7 +125,7 @@ describe('Application life cycle test', function () {
function videoExists(done) {
browser.get('https://' + app.fqdn + '/my-account/videos').then(function () {
return browser.wait(until.elementLocated(By.xpath('//a[@title="Cloudron Test Video"]')), TEST_TIMEOUT);
return browser.wait(until.elementLocated(By.xpath('//a[contains(@title, "Cloudron Test Video")]')), TEST_TIMEOUT);
}).then(function () {
return done();
});