We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a24b149 commit e62f3b1Copy full SHA for e62f3b1
src/test/java/com/lambdatest/TestNGTodo3.java
@@ -19,10 +19,10 @@ public class TestNGTodo3 {
19
private String Status = "failed";
20
21
@BeforeMethod
22
- public void setup(Method m, ITestContext ctx) throws MalformedURLException {
+ @org.testng.annotations.Parameters(value = {"browser", "version", "platform"})
23
+ public void TestNGTod3(String device, String version, String platform) {
24
String username = System.getenv("LT_USERNAME") == null ? "Your LT Username" : System.getenv("LT_USERNAME");
25
String authkey = System.getenv("LT_ACCESS_KEY") == null ? "Your LT AccessKey" : System.getenv("LT_ACCESS_KEY");
- ;
26
String hub = "@hub.lambdatest.com/wd/hub";
27
28
DesiredCapabilities caps = new DesiredCapabilities();
0 commit comments