Browse Source

test: add a delay between navigation

pull/7569/head
Pranav C 8 months ago
parent
commit
26797b5a9e
  1. 1
      tests/playwright/pages/SsoIdpPage/OpenIDLoginPage.ts
  2. 3
      tests/playwright/pages/SsoIdpPage/SAMLLoginPage.ts

1
tests/playwright/pages/SsoIdpPage/OpenIDLoginPage.ts

@ -13,6 +13,7 @@ export class OpenIDLoginPage extends BasePage {
async goto(title = 'test') { async goto(title = 'test') {
// reload page to get latest app info // reload page to get latest app info
await this.rootPage.reload(); await this.rootPage.reload();
await this.rootPage.waitForTimeout(1000);
await this.rootPage.goto('/#/signin/'); await this.rootPage.goto('/#/signin/');
// click sign in with SAML // click sign in with SAML
await this.rootPage.locator(`button:has-text("Sign in with ${title}")`).click(); await this.rootPage.locator(`button:has-text("Sign in with ${title}")`).click();

3
tests/playwright/pages/SsoIdpPage/SAMLLoginPage.ts

@ -13,8 +13,9 @@ export class SAMLLoginPage extends BasePage {
async goto(title = 'test') { async goto(title = 'test') {
// reload page to get latest app info // reload page to get latest app info
await this.rootPage.goto('/#/signin/');
await this.rootPage.reload(); await this.rootPage.reload();
await this.rootPage.waitForTimeout(1000);
await this.rootPage.goto('/#/signin/');
// click sign in with SAML // click sign in with SAML
await this.rootPage.locator(`button:has-text("Sign in with ${title}")`).click(); await this.rootPage.locator(`button:has-text("Sign in with ${title}")`).click();
} }

Loading…
Cancel
Save