@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 +4 -1
- package/index.cjs.js.map +1 -1
- package/index.js +4 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -8406,7 +8406,10 @@ class GooglePage extends IntegrationBase {
|
|
|
8406
8406
|
await expect(this.page.getByText(GOOGLE_LOGIN_TEXTS.showPassword)).toBeVisible({ timeout: 10_000 });
|
|
8407
8407
|
await this.page
|
|
8408
8408
|
.getByLabel(GOOGLE_LOGIN_TEXTS.enterYourPassword)
|
|
8409
|
-
.pressSequentially(process.env.GOOGLE_LOGIN_PASSWORD, {
|
|
8409
|
+
.pressSequentially(process.env.GOOGLE_LOGIN_PASSWORD, {
|
|
8410
|
+
delay: 10,
|
|
8411
|
+
timeout: 20_000,
|
|
8412
|
+
});
|
|
8410
8413
|
await this.page.getByLabel(GOOGLE_LOGIN_TEXTS.showPassword).click();
|
|
8411
8414
|
await this.page
|
|
8412
8415
|
.getByRole("button", { name: GOOGLE_LOGIN_TEXTS.next })
|