您好,登录后才能下订单哦!
package testWd;
import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.Test;
public class findEle {
@Test
public void findElement() throws InterruptedException {
System.setProperty("webdriver.chrome.driver", "D:/01 Learn WebDriver/chromedriver.exe");
WebDriver dr = new ChromeDriver();
dr.manage().window().maximize();
//Alert
/*dr.get("http://www.w3school.com.cn/tiy/t.asp?f=hdom_alert");
WebElement el = dr.findElement(By.xpath("//*[@name='i']"));
dr.switchTo().frame("i");
WebElement el1 = dr.findElement(By.xpath("//input"));
el1.click();
Alert alert1 = dr.switchTo().alert();
System.out.println(alert1.getText());
Thread.sleep(5000);
alert1.accept();*/
//confirm
/*dr.get("http://www.w3school.com.cn/tiy/t.asp?f=hdom_confirm");
WebElement el = dr.findElement(By.xpath("//*[@name='i']"));
dr.switchTo().frame("i");
WebElement el1 = dr.findElement(By.xpath("//input"));
el1.click();
Alert confirm1 = dr.switchTo().alert();
Thread.sleep(2000);
System.out.println(confirm1.getText());
confirm1.accept();
Thread.sleep(2000);
confirm1 = dr.switchTo().alert();
Thread.sleep(2000);
System.out.println(confirm1.getText());
confirm1.accept();
el1.click();
confirm1 = dr.switchTo().alert();
Thread.sleep(2000);
System.out.println(confirm1.getText());
confirm1.dismiss();
Thread.sleep(2000);
confirm1 = dr.switchTo().alert();
System.out.println(confirm1.getText());
confirm1.accept();*/
//Prompt
dr.get("http://www.w3school.com.cn/tiy/t.asp?f=hdom_prompt");
WebElement el = dr.findElement(By.xpath("//*[@name='i']"));
dr.switchTo().frame(el);
WebElement el1 = dr.findElement(By.xpath("//input"));
el1.click();
Alert prompt1 = dr.switchTo().alert();
Thread.sleep(2000);
System.out.println(prompt1.getText());
prompt1.dismiss();
WebElement el2 = dr.findElement(By.xpath("/html/body"));
System.out.println(el2.getText());
Thread.sleep(2000);
el1.click();
prompt1 = dr.switchTo().alert();
Thread.sleep(2000);
System.out.println(prompt1.getText());
prompt1.sendKeys("Jerry");
prompt1.accept();
el2 = dr.findElement(By.xpath("/html/body"));
System.out.println(el2.getText());
//Thread.sleep(3000);
//dr.quit();
}
}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。