@digital-ai/devops-page-object-release 1.0.5 → 1.0.6

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,5 +1,11 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
+ ## 1.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 000315e: S-133578 Add Confirmation Message to Connection Delete Operation v2
8
+
3
9
  ## 1.0.5
4
10
 
5
11
  ### Patch Changes
package/dist/main.js CHANGED
@@ -10196,15 +10196,15 @@ class $3ec0e9cf832fdde8$export$9823ddf5e80770e7 extends (0, $f8721861c660dd88$ex
10196
10196
  return this;
10197
10197
  }
10198
10198
  async expectDeleteDialog(dialogName) {
10199
- const dialog = this.page.getByRole('dialog', {
10200
- name: dialogName
10199
+ const dialog = this.page.getByRole('dialog').filter({
10200
+ hasText: dialogName
10201
10201
  });
10202
10202
  await (0, $kKeXs$playwrighttest.expect)(dialog).toBeVisible();
10203
10203
  return this;
10204
10204
  }
10205
10205
  async deleteInstanceViaDialog(dialogName) {
10206
- const dialog = this.page.getByRole('dialog', {
10207
- name: dialogName
10206
+ const dialog = this.page.getByRole('dialog').filter({
10207
+ hasText: dialogName
10208
10208
  });
10209
10209
  const deleteButton = dialog.getByRole('button', {
10210
10210
  name: 'Delete'