diff options
author | Tulio Casagrande <tcasagra@thoughtworks.com> | 2017-02-17 15:47:01 -0200 |
---|---|---|
committer | Tulio Casagrande <tcasagra@thoughtworks.com> | 2017-02-17 15:47:01 -0200 |
commit | 200ba568e4c975cc5276676b2406170aa85dcad1 (patch) | |
tree | 52357b8a3c3687f34dbdad55ca465d5caf42db7f /service/test | |
parent | 85aa0455d5accb392cf6bc3b5fc44bc8b8da4350 (diff) |
[#907] Change default webdriver to chrome
with @anikarni
Diffstat (limited to 'service/test')
-rw-r--r-- | service/test/functional/features/environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/functional/features/environment.py b/service/test/functional/features/environment.py index d49016b6..821a762b 100644 --- a/service/test/functional/features/environment.py +++ b/service/test/functional/features/environment.py @@ -63,7 +63,7 @@ def before_all(context): def _setup_webdriver(context): - browser = context.config.userdata.get('webdriver', 'phantomjs') + browser = context.config.userdata.get('webdriver', 'chrome') supported_webdrivers = { 'phantomjs': webdriver.PhantomJS, 'firefox': webdriver.Firefox, |