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();
}
}
#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()
欢迎来到testingpai.com!
注册 关于