@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 +6 -0
- package/dist/main.js +6 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +6 -2
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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: '
|
|
10101
|
+
name: 'Save button'
|
|
10098
10102
|
}).click();
|
|
10099
10103
|
}
|
|
10100
10104
|
async expectStringMapCountToBe(count) {
|