Created
November 1, 2021 11:20
-
-
Save muditlambda/3189a47506b5a09dc6005eeae4c4a624 to your computer and use it in GitHub Desktop.
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
| import org.openqa.selenium.chrome.ChromeDriver; | |
| import org.openqa.selenium.chrome.ChromeOptions; | |
| import org.testng.annotations.AfterTest; | |
| import org.testng.annotations.BeforeTest; | |
| import org.testng.annotations.Parameters; | |
| import org.openqa.selenium.WebDriver; | |
| import java.net.MalformedURLException; | |
| public void testSetUp() | |
| { | |
| ChromeOptions options = new ChromeOptions(); | |
| options.setAcceptInsecureCerts(true); | |
| ChromeDriver driver = new ChromeDriver(options); | |
| driver.get("https://www.lambdatest.com"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment