Selenium

WebdriverIO 逆引き Code Tips

URLナビゲーション

.url('https://www.google.co.jp/')

タイトル取得

.getTitle().then(title => {
  console.log(title);
})

sleep / wait

.pause(500)

クリック

.click(selector)

セレクトボックスの選択

.selectByValue(selector, value);