java - 如何使用 Selenium 从表中获取所有 <tr> 元素

标签 java html selenium

我不知道为什么我只得到一个<tr>元素。我寻找我的 table

WebElement tableProducts = driver.findElement(By.id("gridAvailableProducts"));

然后我想找到所有<tr>元素

List<WebElement> tableRows = tableProducts.findElements(By.tagName("tr"));

但是当我检查 tableRows 大小时我得到 1。我没有得到它,因为我之前使用了这个示例代码并且它工作正常。 这是我的 HTML:

<table id="gridAvailableProducts">
<thead>
<tr id="gridProductsHead">
    <th class="gridImgHeader"></th>
    <th class="gridNameHeader"><a href="#" id="name" class="sortAvailableProducts sortArrowAsc">Product name</a></th>
    <th class="gridIndexHeader"><a href="#" id="productindex" class="sortAvailableProducts">Index</a></th>
    <th class="gridProductPackHeader"><a href="#" id="IDDictUnitOfMeasure" class="sortAvailableProducts">Product pack</a></th>
    <th class="gridNetPriceHeader"><a href="#" id="netprice" class="sortAvailableProducts">Net price</a></th>
    <th></th>
</tr>
</thead>
<tbody>
<tr class="addProductToyaTr" data-frequency="0/0/0" data-weight="0" data-volume="0" data-account="0" data-mccount="0" data-ibcount="125" data-smallestpackquantity="125" data-unit="PCE" data-pkwiu="" data-price="3.43" data-id="10731" data-index="INDEX_10731">
    <td class="pImg"><a title="Produkt 10731" style="z-index:1000; position:relative;" rel="grp1" class="bigImg" href="/B2B/img/INDEX_10731.jpg">
        <img alt="" width="45" height="45" src="/B2B/images/nofoto.jpg" onerror="this.onerror=null;this.src='/B2B/images/nofoto.jpg'"></a></td>
    <td class="pName gridProductNameRow">Produkt 10731</td>
    <td class="gridProductIndexRow">INDEX_10731</td>
    <td class="gridProductPackRow">PCE</td>
    <td class="gridProductPriceRow">3.43</td>
    <td><div class="addProductToyaGreen"></div></td>
</tr>
<tr class="addProductToyaTr" data-frequency="0/0/0" data-weight="0" data-volume="0" data-account="0" data-mccount="0" data-ibcount="125" data-smallestpackquantity="125" data-unit="PCE" data-pkwiu="" data-price="10.36" data-id="10732" data-index="INDEX_10732">
    <td class="pImg"><a title="Produkt 10732" style="z-index:1000; position:relative;" rel="grp1" class="bigImg" href="/B2B/img/INDEX_10732.jpg">
        <img alt="" width="45" height="45" src="/B2B/images/nofoto.jpg" onerror="this.onerror=null;this.src='/B2B/images/nofoto.jpg'"></a></td>
    <td class="pName gridProductNameRow">Produkt 10732</td><td class="gridProductIndexRow">INDEX_10732</td>
    <td class="gridProductPackRow">PCE</td><td class="gridProductPriceRow">10.36</td>
    <td><div class="addProductToyaGreen"></div></td>
</tr>
<tr class="addProductToyaTr" data-frequency="0/0/0" data-weight="0" data-volume="0" data-account="0" data-mccount="0" data-ibcount="125" data-smallestpackquantity="125" data-unit="PCE" data-pkwiu="" data-price="8.18" data-id="10733" data-index="INDEX_10733">
    <td class="pImg"><a title="Produkt 10733" style="z-index:1000; position:relative;" rel="grp1" class="bigImg" href="/B2B/img/INDEX_10733.jpg">
        <img alt="" width="45" height="45" src="/B2B/images/nofoto.jpg" onerror="this.onerror=null;this.src='/B2B/images/nofoto.jpg'"></a></td>
    <td class="pName gridProductNameRow">Produkt 10733</td><td class="gridProductIndexRow">INDEX_10733</td>
    <td class="gridProductPackRow">PCE</td><td class="gridProductPriceRow">8.18</td>
    <td><div class="addProductToyaGreen"></div></td>
</tr>
<tr class="addProductToyaTr" data-frequency="0/0/0" data-weight="0" data-volume="0" data-account="0" data-mccount="0" data-ibcount="125" data-smallestpackquantity="125" data-unit="PCE" data-pkwiu="" data-price="10.4" data-id="10734" data-index="INDEX_10734">
    <td class="pImg"><a title="Produkt 10734" style="z-index:1000; position:relative;" rel="grp1" class="bigImg" href="/B2B/img/INDEX_10734.jpg">
        <img alt="" width="45" height="45" src="/B2B/images/nofoto.jpg" onerror="this.onerror=null;this.src='/B2B/images/nofoto.jpg'"></a></td>
    <td class="pName gridProductNameRow">Produkt 10734</td>
    <td class="gridProductIndexRow">INDEX_10734</td>
    <td class="gridProductPackRow">PCE</td>
    <td class="gridProductPriceRow">10.40</td>
    <td><div class="addProductToyaGreen"></div></td>
</tr>
<tr class="addProductToyaTr" data-frequency="0/0/0" data-weight="0" data-volume="0" data-account="0" data-mccount="0" data-ibcount="125" data-smallestpackquantity="125" data-unit="PCE" data-pkwiu="" data-price="13.66" data-id="10735" data-index="INDEX_10735">
    <td class="pImg"><a title="Produkt 10735" style="z-index:1000; position:relative;" rel="grp1" class="bigImg" href="/B2B/img/INDEX_10735.jpg">
        <img alt="" width="45" height="45" src="/B2B/images/nofoto.jpg" onerror="this.onerror=null;this.src='/B2B/images/nofoto.jpg'"></a></td>
    <td class="pName gridProductNameRow">Produkt 10735</td><td class="gridProductIndexRow">INDEX_10735</td>
    <td class="gridProductPackRow">PCE</td>
    <td class="gridProductPriceRow">13.66</td>
    <td><div class="addProductToyaGreen"></div></td>
</tr>
</tbody>

当我尝试通过 xpath 获取元素时

WebElement element = driver.findElement(By.xpath("//*[@id=\"gridAvailableProducts\"]/tbody/tr[3]"));

我得到的错误是

org.openqa.selenium.NoSuchElementException: no such element

最佳答案

使用 WebDriverWaitExpectedConditions.visibilityOfNestedElementsLocatedBy 代替 sleep 线程的最佳方法等到嵌套元素变得可见,如下所示:-

WebElement tableProducts = driver.findElement(By.id("gridAvailableProducts"));

List<WebElement> tableRows = new WebDriverWait(driver, 10).until(ExpectedConditions.visibilityOfNestedElementsLocatedBy(tableProducts, By.tagName("tr")));

关于java - 如何使用 Selenium 从表中获取所有 <tr> 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39143115/

相关文章:

java - 错误 : Could not connect to www. browserstack.com!响应代码:[对象对象]

java - 需要 java/file IO 方面的帮助

java - 如何知道开源 Java 应用程序使用的是哪种 IDE?

java - 如何使用 URI 模板更改 Java 中 URL 中的路径参数

javascript - Angular 垫表点击后不更新

html - 如何删除悬垂的div

java - java中while循环接收到空字符串时如何输出空行?

html - CSS 选择器,div 输入 :checked

python - 如何使用当前用户数据远程创建 Python Selenium Chrome webdriver?

java - TestNG 使用@Factory 和@DataProvider