from selenium import webdriver
import time
driver=webdriver.Chrome()
driver.maximize_window()
driver.get("https://www.baidu.com/")
driver.find_element_by_id('kw').send_keys('测试派')
driver.find_element_by_id('su').click()
time.sleep(2)
driver.find_element_by_xpath('//*[@id="1"]/h3/a').click()
driver.implicitly_wait(10)
driver.find_element_by_xpath('/html/body/div[1]/ul/li[2]/a').click()
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); }
package com.demo;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
public class fliggyDemo {
public static void inputElement(ChromeDriver driver, String eleName, String text) {
WebElement element = driver.findElementByName(eleName);
element.clear();
element.sendKeys(text);
}
public static void main(String[] args) throws InterruptedException {
System.setProperty("webdriver.chrome.driver", "src/test/resources/chromedriver.exe");
ChromeDriver driver = new ChromeDriver();
driver.get("https://www.fliggy.com/");
Thread.sleep(2000);
inputElement(driver,"depCityName","北京");
inputElement(driver,"depDate","2021-07-10");
driver.findElementByXPath("//span[text()='close']").click();
inputElement(driver,"arrCityName","长沙");
driver.findElementByXPath("//form[@id='J_FlightForm']//button").click();
Thread.sleep(5000);
driver.quit();
}
}
欢迎来到testingpai.com!
注册 关于