変数に格納し、Selenium Webdriver PHP を使用してループしたいページ要素がいくつかあります。
例えば:
< cite > Name 1 < /cite >
< cite > Name 2 < /cite >
<cite > Name 3< /cite >
次のコードを使用していますが、上記の結果 (名前 1) などは表示されません。Selenium Webdriver を使用して要素からテキストを取得するにはどうすればよいですか。
$users = $driver->findElements(
WebDriverBy::xpath('//cite')
)->getText();
foreach($users as $u)
{
echo $u;
}
Selenium Webdriver Facebookラッパーを使用しています