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
|
@SneakyThrows
|
||||||
public TopicsList isTopicNotVisible(String topicName) {
|
public TopicsList isTopicNotVisible(String topicName) {
|
||||||
$$x("//table/tbody/tr/td[2]")
|
$$x("//table/tbody/tr/td[2]")
|
||||||
.shouldBe(CollectionCondition.sizeGreaterThanOrEqual(4))
|
.shouldBe(CollectionCondition.sizeGreaterThan(0))
|
||||||
.find(Condition.exactText(topicName))
|
.find(Condition.exactText(topicName))
|
||||||
.shouldBe(Condition.not(Condition.visible));
|
.shouldBe(Condition.not(Condition.visible));
|
||||||
return this;
|
return this;
|
||||||
|
|
|
@ -64,7 +64,6 @@ public class TopicTests extends BaseTest {
|
||||||
.goToSideMenu(SECOND_LOCAL, MainPage.SideMenuOptions.TOPICS)
|
.goToSideMenu(SECOND_LOCAL, MainPage.SideMenuOptions.TOPICS)
|
||||||
.topicIsNotVisible(NEW_TOPIC);
|
.topicIsNotVisible(NEW_TOPIC);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Disabled("Due to issue https://github.com/provectus/kafka-ui/issues/1500 ignore this test")
|
@Disabled("Due to issue https://github.com/provectus/kafka-ui/issues/1500 ignore this test")
|
||||||
@SneakyThrows
|
@SneakyThrows
|
||||||
@DisplayName("should update a topic")
|
@DisplayName("should update a topic")
|
||||||
|
@ -104,7 +103,6 @@ public class TopicTests extends BaseTest {
|
||||||
@AutomationStatus(status = Status.AUTOMATED)
|
@AutomationStatus(status = Status.AUTOMATED)
|
||||||
@CaseId(207)
|
@CaseId(207)
|
||||||
@Test
|
@Test
|
||||||
@Disabled // TODO: https://github.com/provectus/kafka-ui/issues/2373
|
|
||||||
public void deleteTopic() {
|
public void deleteTopic() {
|
||||||
pages.openTopicsList(SECOND_LOCAL)
|
pages.openTopicsList(SECOND_LOCAL)
|
||||||
.isOnPage()
|
.isOnPage()
|
||||||
|
|
Loading…
Add table
Reference in a new issue