WebDriver.FindElementsByTag メソッド

本ページには広告が含まれています。

指定されたタグ名に一致するすべてのWebElements オブジェクトを取得します。

構文
  1. WebElements = WebDriver.FindElementsByTag( tagname, minimum, timeout )
引数
tagname (String)必須
取得する要素のタグ名を指定
minimum (Long省略可
待機する要素の最小数
timeout (Long省略可
タイムアウト(単位:ms)。
戻り値

使い方

pタグを探し、1つ目の内容を取得する。2つ目の内容を取得する場合はItemの引数に2を指定する。

UWSC
DIM WebDriver = CREATEOLEOBJ("selenium.webdriver")

WITH WebDriver
	.Start("chrome")
	.Get("http://example.com")
	DIM WebElement = .FindElementsByTag("p").Item(1)
	PRINT WebElement.text()
	.Quit
ENDWITH
HTML
<div>
    <h1>Example Domain</h1>
    <p>This domain is for use in illustrative examples in documents. You may use this
    domain in literature without prior coordination or asking for permission.</p>
    <p><a href="https://www.iana.org/domains/example">More information...</a></p>
</div>
結果
プレーンテキスト
This domain is for use in illustrative examples in documents. You may use this domain in literature without prior coordination or asking for permission.