We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a676f0 commit 3b5c807Copy full SHA for 3b5c807
e2e-tests/src/main/java/io/kafbat/ui/screens/BasePage.java
@@ -49,8 +49,14 @@ protected void waitUntilSpinnerDisappear(int... timeoutInSeconds) {
49
}
50
51
52
+ protected void clickClearSearchFieldButton() {
53
+ clickByActions(searchFld.$x("./../span[@role='button']"));
54
+ waitUntilSpinnerDisappear(1);
55
+ }
56
+
57
protected void searchItem(String tag) {
58
log.debug("\nsearchItem: {}", tag);
59
+ clickClearSearchFieldButton();
60
sendKeysAfterClear(searchFld, tag);
61
searchFld.pressEnter().shouldHave(Condition.value(tag));
62
waitUntilSpinnerDisappear(1);
0 commit comments