@bigbinary/neeto-playwright-commons 1.8.44 → 1.8.45
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 +6 -4
- package/index.cjs.js.map +1 -1
- package/index.js +6 -4
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -12880,10 +12880,12 @@ class HelpAndProfilePage {
|
|
|
12880
12880
|
await test$1.expect(profileSidebarHeader).toBeHidden();
|
|
12881
12881
|
});
|
|
12882
12882
|
await test$1.test.step("Step 3: Open Help center and verify", this.openHelpCenterV2);
|
|
12883
|
-
await test$1.test.step("Step 4: Open My organization link and verify", async () =>
|
|
12884
|
-
|
|
12885
|
-
|
|
12886
|
-
|
|
12883
|
+
await test$1.test.step("Step 4: Open My organization link and verify", async () => {
|
|
12884
|
+
await this.page
|
|
12885
|
+
.getByTestId(PROFILE_SECTION_SELECTORS.profileOrganizationSettingsButton)
|
|
12886
|
+
.click();
|
|
12887
|
+
await test$1.expect(this.page).toHaveURL(new RegExp(ROUTES.authSettings));
|
|
12888
|
+
});
|
|
12887
12889
|
};
|
|
12888
12890
|
this.verifyLogoutV2 = async () => {
|
|
12889
12891
|
if (shouldSkipSetupAndTeardown())
|