Package ru.yandex.qatools.allure.e2e.tabs

Source Code of ru.yandex.qatools.allure.e2e.tabs.DefectsTabTest

package ru.yandex.qatools.allure.e2e.tabs;


import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import ru.yandex.qatools.allure.JSErrorsRule;
import ru.yandex.qatools.allure.Page;

import static java.util.concurrent.TimeUnit.SECONDS;
import static org.hamcrest.CoreMatchers.not;
import static org.hamcrest.MatcherAssert.assertThat;
import static ru.yandex.qatools.allure.Helpers.existsAndVisible;
import static ru.yandex.qatools.htmlelements.matchers.WrapsElementMatchers.exists;
import static ru.yandex.qatools.matchers.decorators.MatcherDecorators.should;
import static ru.yandex.qatools.matchers.decorators.MatcherDecorators.timeoutHasExpired;

public class DefectsTabTest {

    @Rule
    public JSErrorsRule jsErrorsRule = new JSErrorsRule();

    private Page page;

    @Before
    public void openBrowser() throws Exception {
        page = new Page(jsErrorsRule.driver());
        assertThat(page.tabContent(), should(existsAndVisible())
                .whileWaitingUntil(timeoutHasExpired(SECONDS.toMillis(3))));
        page.tabs().defects().click();
        assertThat(page.defectsTabContent().defectAt(0), should(existsAndVisible())
                .whileWaitingUntil(timeoutHasExpired(SECONDS.toMillis(3))));
    }


    @Test
    public void shouldNotSeeAnOpenTestcase() throws Exception {
        assertThat(page.defectsTabContent().currentDefect(), should(not(existsAndVisible()))
                .whileWaitingUntil(timeoutHasExpired(SECONDS.toMillis(3))));
    }

    @Test
    public void shouldOpenDefectOnClick() throws Exception {
        page.defectsTabContent().defectAt(0).click();

        assertThat(page.defectsTabContent().currentDefect(), should(exists()));
    }
}
TOP

Related Classes of ru.yandex.qatools.allure.e2e.tabs.DefectsTabTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.