require "selenium-webdriver"
client = Selenium::WebDriver::Remote::Http::Default.new
client.timeout = 120
driver = Selenium::WebDriver.for :chrome, :http_client => client
これで120秒後にタイムアウトする。
ちなみに設定しないと60秒でタイムアウトになってしまうので
長い処理が必要な時は必須。
Go to list of users who liked
More than 5 years have passed since last update.
require "selenium-webdriver"
client = Selenium::WebDriver::Remote::Http::Default.new
client.timeout = 120
driver = Selenium::WebDriver.for :chrome, :http_client => client
これで120秒後にタイムアウトする。
ちなみに設定しないと60秒でタイムアウトになってしまうので
長い処理が必要な時は必須。
Register as a new user and use Qiita more conveniently
Go to list of users who liked