package cn.com.test;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import org.openqa.selenium.chrome.ChromeDriver;
public class findElement {
public static void main(String[] args) {
ChromeDriver driver = new ChromeDriver();
driver.get("http://www.baidu.com");
driver.findElementByXPath("//input[@id='kw' and @name='wd']").sendKeys("测试派");
driver.findElementByCssSelector("#su").click();
try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
driver.findElementByXPath("//em[text()=\"测试派\"]/parent::a").click();
try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Set<String> winHandels=driver.getWindowHandles();// 得到当前窗口的set集合
List<String> it = new ArrayList<String>(winHandels); // 将set集合存入list对象
driver.switchTo().window(it.get(1));// 切换到弹出的新窗口
driver.findElementById("navLogin").click();
try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
// 登录
driver.findElementById("nameOrEmail").sendKeys("输入账号");
driver.findElementById("loginPassword").sendKeys("输入密码");
try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
// 登录
driver.findElementById("loginBtn").click();
try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
// 点击 ‘领域’标签 /html/body/header/nav/a[2]
driver.findElementByXPath("/html/body/header/nav/a[2]").click();
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
driver.quit();
}
}
#导包
from selenium import webdriver
from time import sleep
#创建一个驱动对象
browser = webdriver.Chrome()
#使用谷歌浏览器驱动打开浏览器
browser.get('https://www.baidu.com')
#设置抓取标签等待时间5秒
browser.implicitly_wait(5)
#通过id定位搜索框 填写测试派
browser.find_element_by_id('kw"]').send_keys('测试派')
#browser.find_element_by_xpath//input[@id='kw' and @name='wd']
#通过xpah定位确定键 点击
browser.find_element_by_xpath('//input[@id="su"]').click()
#等待5秒
time.sleep(5)
#下面没网络了 视频看不成了 写不下去了
#通过xpah定位测试派位置点击
browser.find_element_by_xpath('//em[text()="测试派"]').click()
browser.quit()
欢迎来到testingpai.com!
注册 关于