0
我正在使用selenium webdriver和Ruby。在Internet Explorer,Chrome和Firefox中同時測試最簡單的方法是什麼?Selenium Webdriver with Ruby
我正在使用selenium webdriver和Ruby。在Internet Explorer,Chrome和Firefox中同時測試最簡單的方法是什麼?Selenium Webdriver with Ruby
browse = Selenium::WebDriver.for :firefox
browse2 = Selenium::WebDriver.for :chrome
browse.get "http://google.co.uk"
browse2.get "http://google.co.uk"
和分別爲Internet Explorer。如果這不是你正在尋找的,我不確定你可以在不同的瀏覽器中同時運行測試。