All Downloads are FREE. Search and download functionalities are using the official Maven repository.

framework.expedia.test.CarSearchTest Maven / Gradle / Ivy

There is a newer version: 0.1.2
Show newest version
package framework.expedia.test;

import com.github.licanhua.test.framework.AutomationDriver;
import framework.expedia.pages.Pages;
import org.junit.Rule;
import org.junit.Test;

public class CarSearchTest {
    @Rule
    public AutomationDriver automationDriver = new AutomationDriver();

    @Test
    public void carSearchTest() {
        automationDriver.getWebDriver().navigate().to("https://www.expedia.com");
        Pages.navigationPage().toCarPage();
        Pages.carSearchPage().doSearch();
        Pages.carSearchResultPage();

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy