Answers for "ruby selenium webdriver proxy with authentication"

0

ruby selenium webdriver proxy with authentication

Webdrivers.configure do |config|
  config.proxy_addr = 'myproxy_address.com'
  config.proxy_port = '8080'
  config.proxy_user = 'username'
  config.proxy_pass = 'password'
end
Posted by: Guest on March-13-2021

Browse Popular Code Answers by Language