com.github.aravinda.TestClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver Show documentation
Show all versions of driver Show documentation
Library to do the necessary settings in selenium webdriver with single annotation
The newest version!
package com.github.aravinda;
import org.testng.annotations.Test;
@Deprecated
public class TestClass extends Driver{
@DriverSettings(
OS = DriverSet.OS.LINUX,
WINDOW_SIZE = DriverSet.WINDOW_SIZE.DEFAULT,
BASE_URL = "https://www.check24.de/",
IMPLICIT_WAIT = 100
)
@Test
public void sampleTest() {
}
}