This commit is contained in:
Girish Ramakrishnan 2023-06-16 17:25:23 +05:30
parent ca3aebef4a
commit 2bbf11f795
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ describe('Application life cycle test', function () {
async function logout() {
await browser.get(`https://${app.fqdn}/`);
await waitForElement(By.xpath('//span[contains(text(), "Buckets")]'));
const button = await browser.findElement(By.xpath('//div/span[contains(text(), "Sign Out")]'));
const button = await browser.findElement(By.xpath('//button[@id="sign-out"]'));
await browser.executeScript('arguments[0].scrollIntoView(false)', button);
await button.click();
await waitForElement(By.id('accessKey'));