java selenium (九) 常見web UI 元素操做 及API使用

本篇介紹咱們如何利用selenium 來操做各類頁面元素web

 

閱讀目錄 

 

連接(link)

    <div>
        <p>連接 link</p>
        <a href="www.cnblogs.com/tankxiao">小坦克</a>
    </div>

連接的操做app

        // 找到連接元素
        WebElement link1 = driver.findElement(By.linkText("小坦克"));
        WebElement link11 = driver.findElement(By.partialLinkText("坦克"));
        
        // 點擊連接
        link1.click();

 

輸入框 textbox

    <div>
        <p>輸入框 testbox</p>
        <input type="text" id="usernameid" value="username" />
    </div>

輸入框的操做ui

        // 找到元素
        WebElement element = driver.findElement(By.id("usernameid"));
        
        // 在輸入框中輸入內容
        element.sendKeys("test111111");
        
        // 清空輸入框
        element.clear();
        
        // 獲取輸入框的內容
        element.getAttribute("value");

  

按鈕(Button)

    <div>
        <p>按鈕 button</p>
        <input type="button" value="添加" id="proAddItem_0" />
    </div> 

找到按鈕元素spa

        //找到按鈕元素
        String xpath="//input[@value='添加']";
        WebElement addButton = driver.findElement(By.xpath(xpath));

        // 點擊按鈕
        addButton.click();

        // 判斷按鈕是否enable
        addButton.isEnabled();

 

  

下拉選擇框(Select)

    <div>
        <p>下拉選擇框框 Select</p>
        <select id="proAddItem_kind" name="kind">
            <option value="1">電腦硬件</option>
            <option value="2">房產</option>
            <option value="18">種類AA</option>
            <option value="19">種類BB</option>
            <option value="20">種類BB</option>
            <option value="21">種類CC</option>
        </select>
    </div>

下拉選擇框的操做code

        // 找到元素
Select select = new Select(driver.findElement(By.id("proAddItem_kind")));

        // 選擇對應的選擇項, index 從0開始的
        select.selectByIndex(2);
        select.selectByValue("18"); select.selectByVisibleText("種類AA");

        // 獲取全部的選項
        List<WebElement> options = select.getOptions();
        for (WebElement webElement : options) { System.out.println(webElement.getText()); }

 

單選按鈕(Radio Button)

    <div>
        <p>單選項  Radio Button</p>
        <input type="radio" value="Apple" name="fruit>" />Apple
        <input type="radio" value="Pear" name="fruit>" />Pear
        <input type="radio" value="Banana" name="fruit>" />Banana
        <input type="radio" value="Orange" name="fruit>" />Orange
    </div>

單選項元素的操做blog

        // 找到單選框元素
        String xpath="//input[@type='radio'][@value='Apple']";
        WebElement apple = driver.findElement(By.xpath(xpath));

        //選擇某個單選框
        apple.click();

        //判斷某個單選框是否已經被選擇
        boolean isAppleSelect = apple.isSelected();

        // 獲取元素屬性
        apple.getAttribute("value");

 

 

多選框 check box

    <div>
        <p>多選項 checkbox</p>
        <input type="checkbox" value="Apple" name="fruit>" />Apple
        <input type="checkbox" value="Pear" name="fruit>" />Pear
        <input type="checkbox" value="Banana" name="fruit>" />Banana
        <input type="checkbox" value="Orange" name="fruit>" />Orange
    </div>

多選框的操做和單選框如出一轍的, 這裏就再也不講了element

相關文章
相關標籤/搜索