Skip to content

Commit

Permalink
#5341 disable test
Browse files Browse the repository at this point in the history
  • Loading branch information
pnatashap committed Apr 8, 2024
1 parent 1b9aabe commit 2ac235e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public void before() {
miniDrawerPage.shouldBeOpened();
}

@Test
// @todo #5341 Enable test after Appbar fix, exception in execution now
@Test(enabled = false)
public void miniDrawerTest() {
miniDrawer.is().displayed()
.and().has().position(LEFT.toString())
Expand All @@ -32,7 +33,7 @@ public void miniDrawerTest() {
miniDrawer.bottomList().items().get(0).has().text("All mail");
miniDrawer.bottomList().items().get(2).with(CustomSiteListItem.class).icon().is().displayed();
miniDrawer.has().css("width", "73px");
((MUIButton)appBar.buttonGroup().item(1)).click();
((MUIButton)appBar.buttonGroup().item(0)).click();
waitCondition(() -> miniDrawer.css("width").equals("240px"));
miniDrawer.has().css("width", "240px");
}
Expand Down

0 comments on commit 2ac235e

Please sign in to comment.