@bigbinary/neeto-playwright-commons 2.1.1 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.cjs.js CHANGED
@@ -8426,7 +8426,10 @@ class GooglePage extends IntegrationBase {
8426
8426
  await test.expect(this.page.getByText(GOOGLE_LOGIN_TEXTS.showPassword)).toBeVisible({ timeout: 10_000 });
8427
8427
  await this.page
8428
8428
  .getByLabel(GOOGLE_LOGIN_TEXTS.enterYourPassword)
8429
- .pressSequentially(process.env.GOOGLE_LOGIN_PASSWORD, { delay: 10 });
8429
+ .pressSequentially(process.env.GOOGLE_LOGIN_PASSWORD, {
8430
+ delay: 10,
8431
+ timeout: 20_000,
8432
+ });
8430
8433
  await this.page.getByLabel(GOOGLE_LOGIN_TEXTS.showPassword).click();
8431
8434
  await this.page
8432
8435
  .getByRole("button", { name: GOOGLE_LOGIN_TEXTS.next })