Skip to content

Instantly share code, notes, and snippets.

@handakumbura
Created February 25, 2023 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save handakumbura/c6272ac95200c12194553c608f1c31f4 to your computer and use it in GitHub Desktop.
Save handakumbura/c6272ac95200c12194553c608f1c31f4 to your computer and use it in GitHub Desktop.
package com.dumiduh.elements;
import com.dumiduh.models.TestData;
import com.dumiduh.utils.JSONUtil;
import org.testng.annotations.Factory;
public class DropDownTest {
static TestData data = JSONUtil.readAGivenTestDataItem("dropdownendtoend");
@Factory
public static Object[] DropDownTest() {
return new Object[]{
new DropDownPageElementsTest(),
new DropDownUsageTest()};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment