Automation Testing-Code for opening the website by calling the Url

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.chrome.ChromeDriver;

public class seleniumbascis {

public static void main(String[] args) {

WebDriver driver= new ChromeDriver();

driver.get(“https://www.netsuite.com/portal/in/home.shtml”);

}

}

Leave a comment

Your email address will not be published. Required fields are marked *