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);
}
#coding:utf-8
from selenium import webdriver
from time import sleep
browser = webdriver.Chrome()
browser.maximize_window()
browser.get('https://www.baidu.com')
browser.implicitly_wait(5)
browser.find_element_by_xpath('//input[@id="kw"]').send_keys(u'测试派')
browser.find_element_by_xpath('//input[@id="su"]').click()
browser.find_element_by_xpath('//*[@id="3"]/h3/a').click()
handles = browser.window_handles
browser.switch_to.window(handles[1])
browser.find_element_by_xpath('//a[text()="领域"]').click()
sleep(5)
browser.quit()
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); }
欢迎来到testingpai.com!
注册 关于