NTH

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

package lastpgm;

import java.time.Duration;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.chrome.ChromeDriver;
public class main{
public static void main(String[] args) throws InterruptedException
{

// TODO Auto-generated method stub

System.setProperty("webdriver.chrome.driver", "C:\\Users\\Manoj\\
Downloads\\selenium-java-4.16.1");

ChromeDriver driver;

driver.manage ().window() maximize();


driver.get("http://www.vwce.ac.in/");

//Thread.sleep(100);

driver.manage().timeouts().implicitlyWait [10, TimeUnit.SECONDS);

driver.findElement(By.xpath("//span[text ()='*'][1]").click());
}
}

https://jar-download.com/artifacts/org.seleniumhq.selenium/selenium-java/3.141.59/
source-code

You might also like