在此我必须阅读绿色突出显示的文本,但当我们将鼠标悬停在系列上时,黄色突出显示的文本将从国家/地区显示到指示符。我尝试使用xpath以下,但是Selenium没有认识到,请你建议任何其他的xpath。
我们的代码如下所示。
Actions act=new Actions(driver);
WebElement we =driver.findElement(By.xpath("//div[@class='series-list-item-data']"));
act.moveToElement(we).build().perform();
System.out.println("elements "+we);
List<WebElement> list=driver.findElements(By.xpath("//div[@class='series-list-item-data']"));
int total_count=list.size();
for(int i = 0; i < total_count; i++){
System.out.println("list size"+list.size());
WebElement element=list.get(i);
String text=element.getAttribute("class");
截图