Skip to content

Commit

Permalink
test: fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
yvmunayev committed Dec 23, 2022
1 parent b5d6459 commit 06b1566
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Lookup/pageObject/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class PageLookup {
*/
async clickSelectedOptionInput() {
await $(this.rootElement)
.$('input[type="text"]')
.$('div input[type="text"]')
.click();
}

Expand All @@ -61,7 +61,7 @@ class PageLookup {
*/
async clickRemoveSelectedOptionButton() {
await $(this.rootElement)
.$('button[title="Remove selected option"]')
.$('button[title="Close"]')
.click();
}

Expand Down Expand Up @@ -94,7 +94,7 @@ class PageLookup {
*/
async hasFocusRemoveSelectedOptionButton() {
return $(this.rootElement)
.$('button[title="Remove selected option"]')
.$('button[title="Close"]')
.isFocused();
}

Expand Down

0 comments on commit 06b1566

Please sign in to comment.