vid-automation selenium tests
[vid.git] / vid-automation / src / main / java / vid / automation / test / test / GeneralUITest.java
1 package vid.automation.test.test;
2
3 import org.testng.annotations.Test;
4 import vid.automation.test.Constants;
5 import vid.automation.test.infra.Get;
6 import vid.automation.test.sections.SideMenu;
7
8 import static org.hamcrest.CoreMatchers.is;
9 import static org.hamcrest.MatcherAssert.assertThat;
10
11 public class GeneralUITest extends VidBaseTestCase {
12
13     @Test
14     public void testHeaderContainerDisplayed() {
15         SideMenu.navigateToWelcomePage();
16         assertThat(Get.byId(Constants.bugFixes.HEADER_CONTAINER).isDisplayed(), is(false));
17     }
18
19 }