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"));
}
}