本ページには広告が含まれています。
指定されたタグ名に一致する最初のWebElement オブジェクトを取得します。
- 構文
- WebElement = WebDriver.FindElementByTag( tagname, timeout, raise )
- 引数
- tagname (String)必須
- 取得する要素のタグ名を指定
- timeout (Long = -1)省略可
- タイムアウト(単位:ms)。raiseにTrueが指定されている場合、時間が過ぎるとエラーが発生します。
- raise (Boolean = True)省略可
- Trueのとき、タイムアウト経過後に例外を発生させる。
- 戻り値
使い方
一番最初に見つかったh1タグのテキストを取得。
DIM WebDriver = CREATEOLEOBJ("selenium.webdriver")
WITH WebDriver
.Start("chrome")
.Get("http://example.com")
PRINT .FindElementByTag("h1").text()
.Quit
ENDWITH
<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>
- 結果
Example Domain