@digital-ai/devops-page-object-release 0.0.104 → 0.0.105

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
+ ## 0.0.105
4
+
5
+ ### Patch Changes
6
+
7
+ - b106cd7: S-129013 Fix selectors for input map
8
+
3
9
  ## 0.0.104
4
10
 
5
11
  ### Patch Changes
package/dist/main.js CHANGED
@@ -2946,6 +2946,10 @@ class $eb81c1b930e440ff$export$62811a109bb4377d extends (0, $f8721861c660dd88$ex
2946
2946
  (0, $kKeXs$playwrighttest.expect)(await this.page.locator('.map-data-row').count()).toBe(count);
2947
2947
  return this;
2948
2948
  }
2949
+ async expectStringMapReadOnlyCount(count) {
2950
+ (0, $kKeXs$playwrighttest.expect)(await this.page.locator('.map-read-only-row').count()).toBe(count);
2951
+ return this;
2952
+ }
2949
2953
  async expectAddButtonDisabledForMap(key, value) {
2950
2954
  await this.page.locator(`.input-with-map[data-test-id="${this.propertyName}"] button.add-new-button`).click();
2951
2955
  await this.page.locator(`.input-with-map[data-test-id="${this.propertyName}"] input[id="new-row-key-input"]`).fill(key);
@@ -10090,11 +10094,11 @@ class $3ec0e9cf832fdde8$var$ConfigurationInstancePage extends (0, $f8721861c660d
10090
10094
  return this;
10091
10095
  }
10092
10096
  async setStringMap(pairs) {
10093
- await this.page.locator('[data-test-id="stringMap"]').getByTestId('icon-button-tooltip').getByLabel('Add key-value pair').click();
10097
+ await this.page.locator('[data-test-id="stringMap"]').getByTestId('icon-button-tooltip').getByLabel('Add new key-value pair').click();
10094
10098
  await this.page.locator('#new-row-key-input').fill(pairs.key);
10095
10099
  await this.page.locator('#new-row-value-input').fill(pairs.value);
10096
10100
  await this.page.getByRole('button', {
10097
- name: 'check-line icon'
10101
+ name: 'Save button'
10098
10102
  }).click();
10099
10103
  }
10100
10104
  async expectStringMapCountToBe(count) {