@digital-ai/devops-page-object-release 0.0.0-snapshot-20251204135514 → 0.0.0-snapshot-20251205091732
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/CHANGELOG.md +1 -1
- package/dist/main.js +1 -4
- package/dist/main.js.map +1 -1
- package/dist/module.js +1 -4
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -5892,7 +5892,6 @@ class $2cb6a6ac6b17e85f$export$107317390f5aa598 extends (0, $9626bc9256ce31f7$ex
|
|
|
5892
5892
|
for (const user of users){
|
|
5893
5893
|
await this.filterUser(user.name);
|
|
5894
5894
|
const type = user.external ? "External" : "Internal";
|
|
5895
|
-
const accountLockedType = user.accountLocked ? "Locked" : "";
|
|
5896
5895
|
(0, $hOLA6$expect)(await this.page.locator(`tr`).filter({
|
|
5897
5896
|
hasText: user.name
|
|
5898
5897
|
}).count()).toBeGreaterThan(0);
|
|
@@ -5903,9 +5902,7 @@ class $2cb6a6ac6b17e85f$export$107317390f5aa598 extends (0, $9626bc9256ce31f7$ex
|
|
|
5903
5902
|
}).count()).toBeGreaterThan(0);
|
|
5904
5903
|
if (user.accountLocked) (0, $hOLA6$expect)(await this.page.locator(`tr`).filter({
|
|
5905
5904
|
hasText: user.name
|
|
5906
|
-
}).locator(
|
|
5907
|
-
hasText: accountLockedType
|
|
5908
|
-
}).count()).toBeGreaterThan(0);
|
|
5905
|
+
}).locator('[data-testid="user-account-lock"]').isVisible()).toBeTruthy();
|
|
5909
5906
|
if (user.email) (0, $hOLA6$expect)(await this.page.locator(`tr`).filter({
|
|
5910
5907
|
hasText: user.name
|
|
5911
5908
|
}).locator(`td`).filter({
|