溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Se(13)buttongroup、breadcrump等

發(fā)布時間:2020-07-02 02:59:33 來源:網(wǎng)絡(luò) 閱讀:375 作者:愛與夢想 欄目:軟件技術(shù)

package test;

import java.util.List;

import org.openqa.selenium.By;

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.WebElement;

import org.openqa.selenium.chrome.ChromeDriver;

import org.testng.annotations.Test;


public class buttongroup {


@Test

public void test() throws InterruptedException{

System.setProperty("webdriver.chrome.driver", "D:/01 Learn WebDriver/chromedriver.exe");

WebDriver dr = new ChromeDriver();

dr.manage().window().maximize();

//dr.get("file:///C:/Users/fengchuanyun/Desktop/1/%E8%87%AA%E5%8A%A8%E5%8C%96%E7%BB%83%E4%B9%A0/button%20group.html");

        

/*List<WebElement> bns = dr.findElement(By.className("btn-group")).findElements(By.className("btn"));

for(WebElement bn : bns) { 

if(bn.getText().equals("second")){

bn.click();

break;

}

}*/

/*List<WebElement> bns = dr.findElements(By.className("btn"));

bns.get(1).click();

}*/

  /*WebElement bn = dr.findElement(By.xpath("/html/body/div/div/div/div/div/div[1]"));

  bn.click();*/

//面包屑

dr.get("http://sports.sina.com.cn/basketball/nba/2017-05-07/doc-ifyeychk7096356.shtml");

/*WebElement bn = dr.findElement(By.xpath("http://*[@id='j_nav_2']/div[1]/a[2]"));

bn.click();*/

Thread.sleep(3000);

List<WebElement> el = dr.findElement(By.cssSelector(".nav-g__breadcrumb")).findElements(By.tagName("a"));

el.get(el.size()-1).click();

//dr.quit();

}

}

        

        

    


向AI問一下細節(jié)
推薦閱讀:
  1. linux筆記13
  2. unit13

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

se gr
AI