Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created February 2, 2024 15:28
Show Gist options
  • Save SarahElson/1805fd1ffb1468d471944bc76855fac5 to your computer and use it in GitHub Desktop.
Save SarahElson/1805fd1ffb1468d471944bc76855fac5 to your computer and use it in GitHub Desktop.
How To Automate Login Page Using Selenium WebDriver
<?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>
<test name="FirefoxBrowserTest">
<parameter name="browser" value="Firefox"/>
<classes>
<class name="com.infa.dqcloud.testcases.profiling.LoginTest">
</class>
</classes>
</test>
</suite>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment