public static void textControl(WebDriver driver, String name,String txt){ WebElement element = driver.findElement(By.name(name)); element.clear(); element.sendKeys(txt); } public static void loginFeizhu() throws InterruptedException { WebDriver driver = init(); driver.get("https://www.fliggy.com/"); Thread.sleep(1000); driver.findElement(By.xpath("//input[@placeholder="目的地/酒店/景点/签证等"]")).click(); Thread.sleep(1000); driver.findElement(By.xpath("//div[@class="recommend-values"]/span[contains(text(),"机票")and @data-itemindex=0]")).click(); */ textControl(driver,"depCityName", "上海")); textControl(driver,"arrCityName","长沙"); textControl(driver,"depDate","2021-07-10"); driver.findElement(By.cssSelector(".close-btn.delegate-click-381")).click(); Thread.sleep(3000); driver.findElement(By.xpath("//form[@id="J_FlightForm"]//button[text()="搜索"]")).click(); tearDown(driver); }
public static void textControl(WebDriver driver, String name,String txt){
WebElement element = driver.findElement(By.name(name));
element.clear();
element.sendKeys(txt);
}
public static void loginFeizhu() throws InterruptedException {
WebDriver driver = init();
driver.get("https://www.fliggy.com/");
Thread.sleep(1000);
/*
//点击搜索框
driver.findElement(By.xpath("//input[@placeholder=\"目的地/酒店/景点/签证等\"]")).click();
Thread.sleep(1000);
//选择机票
driver.findElement(By.xpath("//div[@class=\"recommend-values\"]/span[contains(text(),\"机票\")and @data-itemindex=0]")).click();
*/
textControl(driver,"depCityName", "上海"));
textControl(driver,"arrCityName","长沙");
textControl(driver,"depDate","2021-07-10");
driver.findElement(By.cssSelector(".close-btn.delegate-click-381")).click();
Thread.sleep(3000);
driver.findElement(By.xpath("//form[@id=\"J_FlightForm\"]//button[text()=\"搜索\"]")).click();
tearDown(driver);
}
#导包
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!
注册 关于