React Commands Get link Facebook X Pinterest Email Other Apps November 07, 2024 npm create vite@latest my-react-app -- --template reactcd my-react-appnpm run devnpm start Get link Facebook X Pinterest Email Other Apps Comments
Class File September 20, 2024 import io.github.bonigarcia.wdm.WebDriverManager; import java.util.List; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.edge.*; public class Test { public static void main(String[] args) throws InterruptedException { WebDriverManager.edgedriver().setup(); WebDriver driver = new EdgeDriver(); driver.get("https://www.google.co.in/"); driver.manage().window().maximize(); WebElement textbox = driver.findElement(By.name("q")); textbox.sendKeys("harsh"); List<WebElement> list = driver.findElements(By.xpath("//input[@name='btnK']")); driver.findElement(By.xpath("//*[@alt = 'Google']")).click(); Thread.sleep(1000); driver.findElement(By.xpath("//*[@class='FPdoLc lJ9FBc']//input[@name='btnK']")).click(); //System.out.println(list); Thread.sleep(1000);... Read more
Dependencies September 20, 2024 < project xmlns = " http://maven.apache.org/POM/4.0.0 " xmlns:xsi = " http://www.w3.org/2001/XMLSchema-instance " xsi:schemaLocation = " http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd "> < modelVersion > 4.0.0 </ modelVersion > < groupId > selenium </ groupId > < artifactId > selenium </ artifactId > < version > 0.0.1-SNAPSHOT </ version > < name > selenium </ name > < description > selenium </ description > < dependencies > <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java --> < dependency > < groupId > org.seleniumhq.selenium </ groupId > < artifactId > selenium-java </ artifactId > < version > 3.141.59 </ version > </ dependency > <!-- https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager --> <!--... Read more
January 17, 2025 Apti test https://docs.google.com/forms/d/1U7yZ58-b7DEsw0PQpUc_ML8qudTJNmCdf550pALEs6Q Read more
Comments
Post a Comment