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.
2 parents 745ec96 + 3b5c807 commit 5ad88dbCopy full SHA for 5ad88db
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