com.nordstrom.automation.selenium.examples.TestNgRoot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-foundation Show documentation
Show all versions of selenium-foundation Show documentation
Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).
package com.nordstrom.automation.selenium.examples;
import org.testng.annotations.BeforeClass;
import com.nordstrom.automation.selenium.support.TestNgBase;
public class TestNgRoot extends TestNgBase {
@BeforeClass
public void beforeClass() {
ExamplePage.setHubAsTarget();
}
}