20210707web 作业

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

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

  • 其他回帖
  • Noone

    package cn.com.test;

    import java.util.ArrayList;
    import java.util.List;
    import java.util.Set;

    import org.openqa.selenium.chrome.ChromeDriver;

    public class findElement {

    public static void main(String[] args) {

    ChromeDriver driver = new ChromeDriver();
    
    driver.get("http://www.baidu.com");
    
    driver.findElementByXPath("//input[@id='kw' and @name='wd']").sendKeys("测试派");
    
    driver.findElementByCssSelector("#su").click();
    
    try {
    	Thread.sleep(1000);
    } catch (InterruptedException e1) {
    	// TODO Auto-generated catch block
    	e1.printStackTrace();
    }
    
    driver.findElementByXPath("//em[text()=\"测试派\"]/parent::a").click();
    
    try {
    	Thread.sleep(1000);
    } catch (InterruptedException e1) {
    	// TODO Auto-generated catch block
    	e1.printStackTrace();
    }
    
    Set<String> winHandels=driver.getWindowHandles();// 得到当前窗口的set集合
    List<String> it = new ArrayList<String>(winHandels); // 将set集合存入list对象
    driver.switchTo().window(it.get(1));// 切换到弹出的新窗口
    
    
    driver.findElementById("navLogin").click();
    
    try {
    	Thread.sleep(1000);
    } catch (InterruptedException e1) {
    	// TODO Auto-generated catch block
    	e1.printStackTrace();
    }
    
    // 登录
    driver.findElementById("nameOrEmail").sendKeys("输入账号");
    
    driver.findElementById("loginPassword").sendKeys("输入密码");
    
    try {
    	Thread.sleep(1000);
    } catch (InterruptedException e1) {
    	// TODO Auto-generated catch block
    	e1.printStackTrace();
    }
    
    // 登录
    driver.findElementById("loginBtn").click();
    
    try {
    	Thread.sleep(1000);
    } catch (InterruptedException e1) {
    	// TODO Auto-generated catch block
    	e1.printStackTrace();
    }
    
    // 点击 ‘领域’标签    /html/body/header/nav/a[2]
    driver.findElementByXPath("/html/body/header/nav/a[2]").click();
    
    
    try {
    	Thread.sleep(5000);
    } catch (InterruptedException e) {
    	// TODO Auto-generated catch block
    	e.printStackTrace();
    }
    
    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);
        }
    
  • Tony
    public static void loginYouxuePai() throws InterruptedException {
            System.setProperty("webdriver.chrome.driver", "D:\\Program Files\\chromedriver.exe");
            ChromeDriver webDriver = new ChromeDriver();
    
            webDriver.get("https://www.baidu.com");
    
            WebElement kw = webDriver.findElement(By.id("kw"));
            kw.sendKeys("测试派");
    
            WebElement su = webDriver.findElement(By.id("su"));
    
            String windowHandle = webDriver.getWindowHandle();
            su.click();
    
            Thread.sleep(3000);
    
    
            WebElement element = webDriver.findElement(By.xpath("//em[text()=\"测试派\"]/parent::*"));
            element.click();
            Thread.sleep(3000);
    
            webDriver.switchTo().defaultContent();
            webDriver.manage().window().maximize();
            System.out.println("页面跳转成功");
    
            Set<String> windowHandles = webDriver.getWindowHandles();
            for (String s : windowHandles){
                Thread.sleep(1000);
                if (webDriver.switchTo().window(s).getTitle().equals("测试派 - 软件测试工程师的心灵社区")){
                    windowHandle = s;
                    break;
                }
            }
    
            webDriver.switchTo().window(windowHandle);
            Thread.sleep(1000);
            //element = webDriver.findElement(By.cssSelector(".fn__two-line"));
            element =  webDriver.findElement(By.xpath("//a[@href=\"http://testingpai.com/article/1625637760328/comment/1625650976958#comments\"]/div"));
            if (element != null){
                System.out.printf("找到元素了");
            }
    
            element.click();
        }
    
    1 操作
    Tony 在 2021-07-08 15:13:28 更新了该回帖
  • 查看更多回帖