20210707web 作业

本贴最后更新于 1346 天前,其中的信息可能已经水流花落
24 回帖
请输入回帖内容 ...
  • H

    public ChromeDriver() {

    this(ChromeDriverService.createDefaultService(), new ChromeOptions());
    }

    public static final String CHROME_DRIVER_EXE_PROPERTY = "webdriver.chrome.driver";

    public static void main( String[] args )

    {

    System.setProperty("webdriver.chrome.driver","D:\test\driver\chromeDriver.exe");

    WebDriver driver = new ChromeDriver();

    driver.get("http://testingpai.com/");
    }
    driver.find_element_by_css_selector("fn__layer fn__layer--big").click()

  • 其他回帖
  • ke2beck
    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(); } }
    1 回复
  • Tony
    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); }
  • qingchen

    #导包
    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()

    1 回复
  • 查看更多回帖