Commit 17d4bf45 authored by Jérome Perrin's avatar Jérome Perrin

XXX use remote driver

parent b0899e0f
......@@ -171,7 +171,10 @@ class FunctionalTestRunner:
if firefox_bin:
geckodriver = os.path.join(os.path.dirname(firefox_bin), 'geckodriver')
kw.update(firefox_binary=firefox_bin, executable_path=geckodriver)
browser = webdriver.Firefox(**kw)
#browser = webdriver.Firefox(**kw)
browser = webdriver.Remote(
command_executor='http://10.0.30.235:4444/wd/hub',
desired_capabilities=DesiredCapabilities.FIREFOX)
start_time = time.time()
browser.get(self._getTestURL())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment