对于https://www.parcelhero.com/en-gb/courier-services/carriers/dhl中的以下 html 代码,getattribute("style") 获取 null 值。为什么?
<div class="dvPageShare" style="position: relative; top: -50px;">
以下是使用的代码:
driver.get("https://www.parcelhero.com/en-gb/courier-services/carriers/dhl");
List <WebElement>SocialLink = driver.findElements(By.tagName("div"));
for (WebElement social : SocialLink)
{
if( social.getAttribute("class")!=null && social.getAttribute("class").equals("dvPageShare"))
{
System.out.println("Present");System.out.println(social.getAttribute("style"));
}
}