Se(3)---打印页面信息
发表于:2024-11-25 作者:热门IT资讯网编辑
编辑最后更新 2024年11月25日,package test;import org.openqa.selenium.WebDriver;import org.openqa.selenium.chrome.ChromeDriver;imp
package test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.Test;
public class webpage {
@Test
public void test() throws InterruptedException{
System.setProperty("webdriver.chrome.driver", "D:/01 Learn WebDriver/chromedriver.exe");
WebDriver dr = new ChromeDriver();
dr.manage().window().maximize();
dr.get("http://www.baidu.com");
//如果有重定向,可以等几秒之后再打印
System.out.println("The Title is:"+dr.getTitle());
System.out.println("Current URL is:"+dr.getCurrentUrl());
Thread.sleep(3000);
dr.quit();
}
}