@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.js
CHANGED
|
@@ -12834,10 +12834,12 @@ class HelpAndProfilePage {
|
|
|
12834
12834
|
await expect(profileSidebarHeader).toBeHidden();
|
|
12835
12835
|
});
|
|
12836
12836
|
await test$2.step("Step 3: Open Help center and verify", this.openHelpCenterV2);
|
|
12837
|
-
await test$2.step("Step 4: Open My organization link and verify", async () =>
|
|
12838
|
-
|
|
12839
|
-
|
|
12840
|
-
|
|
12837
|
+
await test$2.step("Step 4: Open My organization link and verify", async () => {
|
|
12838
|
+
await this.page
|
|
12839
|
+
.getByTestId(PROFILE_SECTION_SELECTORS.profileOrganizationSettingsButton)
|
|
12840
|
+
.click();
|
|
12841
|
+
await expect(this.page).toHaveURL(new RegExp(ROUTES.authSettings));
|
|
12842
|
+
});
|
|
12841
12843
|
};
|
|
12842
12844
|
this.verifyLogoutV2 = async () => {
|
|
12843
12845
|
if (shouldSkipSetupAndTeardown())
|