external-services-automation 1.0.7 → 1.0.9

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.
@@ -32,9 +32,12 @@ class PasswordSetupPage {
32
32
  await (0, test_1.expect)(this.continueButton).toBeVisible();
33
33
  }
34
34
  async dontUseMFA() {
35
- if (await this.dontUseMFAButton.isVisible({ timeout: 10000 })) {
35
+ console.log('entered dontUseMFA');
36
+ if (await this.dontUseMFAButton.isVisible()) {
36
37
  await this.dontUseMFAButton.click();
38
+ console.log('clicked dontUseMFA');
37
39
  }
40
+ console.log('exited dontUseMFA');
38
41
  }
39
42
  }
40
43
  exports.PasswordSetupPage = PasswordSetupPage;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "external-services-automation",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "External services automation library for Playwright and Cucumber",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",