LoginSignup
0
0

More than 3 years have passed since last update.

phpのselenium-webdriverでCSSセレクタを使う方法

Posted at

正直、CENT OS7でPHPから動くするようにするまでがぼちぼち大変でございました。
まあ、動けば楽勝と思ったのですが・・・、セレクタの指定で若干迷ってしまったのでメモ。

cssSelectorを利用して子を検索指定ができる。

 $driver->wait()->until(
   WebDriverExpectedCondition::elementToBeClickable(WebDriverBy::cssSelector(".break_time_timer .-start")) 
 );
 $driver->findElement(WebDriverBy::cssSelector(".break_time_timer .-start"))->click();

チート見りゃすぐわかったんだけど、リファレンスがわかりにくかったので悩んでしまった。
https://gist.github.com/aczietlow/7c4834f79a7afd920d8f

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0