如何使用selenium webdriver单击css中的div

时间:2014-02-27 03:56:23

标签: java selenium

在这个div中包含更多的加载,我想点击这个div。

<div class="clearfix zs-load-more" data-entity_id="8913" 
         data-profile_action="reviews-top" data-limit="5" data-page="1">
 <div class="load-more">
  Load More <span class="zs-load-more-count">92</span></div></div>

此页面的主要网址。

1 个答案:

答案 0 :(得分:0)

使用以下代码点击加载更多

driver.findElement(By.className("load-more")).click();