SDMT Assignment 7
SDMT Assignment 7
SDMT Assignment 7
Code:
package selenium;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
System.setProperty("webdriver.chrome.driver", "C:\\Tools\\Selenium\\
chromedriver.exe");
//0.2 Tell this script to use Selenium, Google Chrome and its version as the default
browser
co.setBrowserVersion("119");
driver.get("https://www.google.com/");
searchBox = driver.findElement(By.name("q"));
searchBox.sendKeys("MIT WPU");
driver.findElement(By.className("gN089b")).click();
if(title.contains("MIT WPU")) {
System.out.println("Step 5 Passed");
} else {
System.out.println("Step 5 Failed");
break;
}
Output: