@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/CHANGELOG.md
CHANGED
package/dist/main.js
CHANGED
|
@@ -6828,7 +6828,6 @@ class $3ceab7c613cabfd6$export$107317390f5aa598 extends (0, $f8721861c660dd88$ex
|
|
|
6828
6828
|
for (const user of users){
|
|
6829
6829
|
await this.filterUser(user.name);
|
|
6830
6830
|
const type = user.external ? "External" : "Internal";
|
|
6831
|
-
const accountLockedType = user.accountLocked ? "Locked" : "";
|
|
6832
6831
|
(0, $kKeXs$playwrighttest.expect)(await this.page.locator(`tr`).filter({
|
|
6833
6832
|
hasText: user.name
|
|
6834
6833
|
}).count()).toBeGreaterThan(0);
|
|
@@ -6839,9 +6838,7 @@ class $3ceab7c613cabfd6$export$107317390f5aa598 extends (0, $f8721861c660dd88$ex
|
|
|
6839
6838
|
}).count()).toBeGreaterThan(0);
|
|
6840
6839
|
if (user.accountLocked) (0, $kKeXs$playwrighttest.expect)(await this.page.locator(`tr`).filter({
|
|
6841
6840
|
hasText: user.name
|
|
6842
|
-
}).locator(
|
|
6843
|
-
hasText: accountLockedType
|
|
6844
|
-
}).count()).toBeGreaterThan(0);
|
|
6841
|
+
}).locator('[data-testid="user-account-lock"]').isVisible()).toBeTruthy();
|
|
6845
6842
|
if (user.email) (0, $kKeXs$playwrighttest.expect)(await this.page.locator(`tr`).filter({
|
|
6846
6843
|
hasText: user.name
|
|
6847
6844
|
}).locator(`td`).filter({
|