Fix unstable e2e test (#2416)
* Fix unstable e2e test #2373
* Fix unstable e2e test #2373
* Prepare steps for Schema Registry and Connector fixed #2288
* Fix unstable e2e test #2373
* Revert "Prepare steps for Schema Registry and Connector fixed #2288"
This reverts commit cfeb224e99
.
* Adding @Disabled annotation #2373
Co-authored-by: anezboretskiy <anezboretskiy@modeln.com>
Co-authored-by: Vlad Senyuta <66071557+VladSenyuta@users.noreply.github.com>
This commit is contained in:
parent
7765a268af
commit
ffb62d3eab
2 changed files with 1 additions and 3 deletions
|
@ -55,7 +55,7 @@ public class TopicsList {
|
|||
@SneakyThrows
|
||||
public TopicsList isTopicNotVisible(String topicName) {
|
||||
$$x("//table/tbody/tr/td[2]")
|
||||
.shouldBe(CollectionCondition.sizeGreaterThanOrEqual(4))
|
||||
.shouldBe(CollectionCondition.sizeGreaterThan(0))
|
||||
.find(Condition.exactText(topicName))
|
||||
.shouldBe(Condition.not(Condition.visible));
|
||||
return this;
|
||||
|
|
|
@ -64,7 +64,6 @@ public class TopicTests extends BaseTest {
|
|||
.goToSideMenu(SECOND_LOCAL, MainPage.SideMenuOptions.TOPICS)
|
||||
.topicIsNotVisible(NEW_TOPIC);
|
||||
}
|
||||
|
||||
@Disabled("Due to issue https://github.com/provectus/kafka-ui/issues/1500 ignore this test")
|
||||
@SneakyThrows
|
||||
@DisplayName("should update a topic")
|
||||
|
@ -104,7 +103,6 @@ public class TopicTests extends BaseTest {
|
|||
@AutomationStatus(status = Status.AUTOMATED)
|
||||
@CaseId(207)
|
||||
@Test
|
||||
@Disabled // TODO: https://github.com/provectus/kafka-ui/issues/2373
|
||||
public void deleteTopic() {
|
||||
pages.openTopicsList(SECOND_LOCAL)
|
||||
.isOnPage()
|
||||
|
|
Loading…
Add table
Reference in a new issue