@digital-ai/devops-page-object-release 0.0.0-snapshot-20251204060936 → 0.0.0-snapshot-20251204135514

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 CHANGED
@@ -1,10 +1,10 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
- ## 0.0.0-snapshot-20251204060936
3
+ ## 0.0.0-snapshot-20251204135514
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - 94dc456: S-126454 - added new methods for unlocking users and verifying warning messages
7
+ - 294fb2f: S-126029: Added new column details for testing account lock
8
8
 
9
9
  ## 0.0.93
10
10
 
package/dist/main.js CHANGED
@@ -6828,6 +6828,7 @@ 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" : "";
6831
6832
  (0, $kKeXs$playwrighttest.expect)(await this.page.locator(`tr`).filter({
6832
6833
  hasText: user.name
6833
6834
  }).count()).toBeGreaterThan(0);
@@ -6836,6 +6837,11 @@ class $3ceab7c613cabfd6$export$107317390f5aa598 extends (0, $f8721861c660dd88$ex
6836
6837
  }).locator(`td`).filter({
6837
6838
  hasText: type
6838
6839
  }).count()).toBeGreaterThan(0);
6840
+ if (user.accountLocked) (0, $kKeXs$playwrighttest.expect)(await this.page.locator(`tr`).filter({
6841
+ hasText: user.name
6842
+ }).locator(`td`).filter({
6843
+ hasText: accountLockedType
6844
+ }).count()).toBeGreaterThan(0);
6839
6845
  if (user.email) (0, $kKeXs$playwrighttest.expect)(await this.page.locator(`tr`).filter({
6840
6846
  hasText: user.name
6841
6847
  }).locator(`td`).filter({
@@ -6899,25 +6905,6 @@ class $3ceab7c613cabfd6$export$107317390f5aa598 extends (0, $f8721861c660dd88$ex
6899
6905
  })).toHaveCount(0);
6900
6906
  return this;
6901
6907
  }
6902
- async expectUserUnlockedToaster(user) {
6903
- await (0, $kKeXs$playwrighttest.expect)(this.page.getByText(`User ${user} unlocked successfully`)).toBeVisible({
6904
- timeout: 10000
6905
- });
6906
- }
6907
- async unlockUser(user) {
6908
- await this.page.getByTestId(`unlock-btn-${user}`).click();
6909
- }
6910
- async expectWarningVisibility(warningRegex, shouldBeVisible) {
6911
- const locator = this.page.getByText(warningRegex);
6912
- if (shouldBeVisible) await (0, $kKeXs$playwrighttest.expect)(locator).toBeVisible();
6913
- else await (0, $kKeXs$playwrighttest.expect)(locator).toHaveCount(0);
6914
- return this;
6915
- }
6916
- async editUserClickCancelButton() {
6917
- await this.page.getByRole("button", {
6918
- name: "Cancel"
6919
- }).click();
6920
- }
6921
6908
  }
6922
6909
 
6923
6910