<img>
以下のような特定のタグがある場合
<img title="Title" alt="myTitle" src="A/B/C/xyz.png">
driver.getElement(By.tagName("img")).getAttribute("src")
src
このタグの属性を取得します。結果 -A/B/C/xyz.png
同様に、 などの属性の値を取得できtitle
ますalt
。
同様に、次を使用して任意のタグの CSS プロパティを取得できます。getCssValue("some propety")