How to open specific browser using selenium webdriver

后端 未结 5 497
遇见更好的自我
遇见更好的自我 2021-02-06 14:40

I am using lang :java framework: testNG

my system has 3-4 versions of Mozilla installed, how can i open instance of specific version of Mozilla. Suppose i have 3.5, 3.6,

5条回答
  •  有刺的猬
    2021-02-06 14:49

    For Ruby - Chrome

      caps = Selenium::WebDriver::Remote::Capabilities.chrome("desiredCapabilities" => "chromeOptions" => {"binary" => "/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome"})
      @driver = Selenium::WebDriver.for :chrome, desired_capabilities: caps
    

提交回复
热议问题