This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd"> | |
<suite name="Suite"> | |
<test name="Test"> | |
<!-- Classes element contains the classes to be included in the test --> | |
<classes> | |
<!-- Reference to the DemoClass test class --> | |
<class name="demo.DemoClass"/> | |
</classes> | |
</test> <!-- End of Test --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd"> | |
<!-- The XML suite file defines the structure of TestNG test suites --> | |
<suite name="Suite"> | |
<test name="Test"> | |
<!-- Classes element contains the classes to be included in the test --> | |
<classes> | |
<!-- Reference to the DemoClass test class --> | |
<class name="demo.DemoClass"/> | |
</classes> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd"> | |
<suite name="Suite"> | |
<test name="Test"> | |
<!-- Classes element contains the classes to be included in the test --> | |
<classes> | |
<!-- Reference to the DemoClass test class --> | |
<class name="demo.DemoClass"/> | |
</classes> | |
</test> <!-- End of Test --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package demo; | |
import org.openqa.selenium.By; | |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.chrome.ChromeDriver; | |
import org.testng.Assert; | |
import org.testng.annotations.Test; | |
public class DemoClass { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd"> | |
<!-- The XML suite file defines the structure of TestNG test suites --> | |
<suite name="Suite"> | |
<test name="Test"> | |
<!-- Classes element contains the classes to be included in the test --> | |
<classes> | |
<!-- Reference to the DemoClass test class --> | |
<class name="demo.DemoClass"/> | |
</classes> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd"> | |
<!-- The XML suite file defines the structure of TestNG test suites --> | |
<suite name="Suite"> | |
<test name="Test"> | |
<!-- Classes element contains the classes to be included in the test --> | |
<classes> | |
<!-- Reference to the DemoClass test class --> | |
<class name="demo.DemoClass"/> | |
</classes> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd"> | |
<!-- The XML suite file defines the structure of TestNG test suites --> | |
<suite name="Suite"> | |
<test name="Test"> | |
<!-- Classes element contains the classes to be included in the test --> | |
<classes> | |
<!-- Reference to the DemoClass test class --> | |
<class name="demo.DemoClass"/> | |
</classes> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd"> | |
<!-- The XML suite file defines the structure of TestNG test suites --> | |
<suite name="Suite"> | |
<test name="Test"> | |
<!-- Classes element contains the classes to be included in the test --> | |
<classes> | |
<!-- Reference to the DemoClass test class --> | |
<class name="demo.DemoClass"/> | |
</classes> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>Lambdatest</groupId> | |
<artifactId>Example</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>project</name> | |
<url>http://maven.apache.org</url> | |
<properties> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> | |
<suite name="TestSuite" parallel="tests"> | |
<test name="ChromeBrowserTest"> | |
<parameter name="browser" value="Chrome"/> | |
<classes> | |
<class name="com.infa.dqcloud.testcases.profiling.LoginTest"> | |
</class> | |
</classes> | |
</test> |