@uxf/e2e 11.20.0 → 11.21.1
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/package.json +1 -1
- package/ui/combobox.js +2 -2
package/package.json
CHANGED
package/ui/combobox.js
CHANGED
|
@@ -6,7 +6,7 @@ const create_selector_1 = require("../utils/create-selector");
|
|
|
6
6
|
function combobox(finder) {
|
|
7
7
|
var _a;
|
|
8
8
|
const comboboxSelector = (0, create_selector_1.createSelector)(finder)
|
|
9
|
-
.find(".uxf-
|
|
9
|
+
.find(".uxf-combobox")
|
|
10
10
|
.withAttribute("data-name", finder.dataName)
|
|
11
11
|
.nth((_a = finder.nth) !== null && _a !== void 0 ? _a : 0)
|
|
12
12
|
.find(".uxf-form-component__input");
|
|
@@ -16,7 +16,7 @@ function combobox(finder) {
|
|
|
16
16
|
},
|
|
17
17
|
selectItemWithTextFromDropdown(optionText) {
|
|
18
18
|
return testcafe_1.t
|
|
19
|
-
.click(comboboxSelector.find(".uxf-
|
|
19
|
+
.click(comboboxSelector.find(".uxf-input__arrow-icon"))
|
|
20
20
|
.click((0, testcafe_1.Selector)(".uxf-dropdown__item").withText(optionText));
|
|
21
21
|
},
|
|
22
22
|
shouldExist() {
|