File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
e2e-tests/src/main/java/io/kafbat/ui/screens/connectors Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 1313public class KafkaConnectList extends BasePage {
1414
1515 protected SelenideElement createConnectorBtn = $x ("//button[contains(text(),'Create Connector')]" );
16+ protected SelenideElement connectorsTab = $x ("//a[contains(text(),'Connectors')]" );
1617
1718 public KafkaConnectList () {
1819 tableElementNameLocator = "//tbody//td[contains(text(),'%s')]" ;
1920 }
2021
22+ @ Step
23+ public KafkaConnectList clickConnectorsTab () {
24+ WebUtil .clickByJavaScript (connectorsTab );
25+ return this ;
26+ }
27+
2128 @ Step
2229 public KafkaConnectList waitUntilScreenReady () {
30+ clickConnectorsTab ();
2331 waitUntilSpinnerDisappear ();
2432 getPageTitleFromHeader (KAFKA_CONNECT ).shouldBe (Condition .visible );
2533 return this ;
You can’t perform that action at this time.
0 commit comments