Commit bd2b4bc2 authored by Michal Čihař's avatar Michal Čihař

Update Selenium setup

- use latest Firefox
- add Edge on Windows 10
- add Safari on Mac OS 10.11
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 2cc8d0de
...@@ -54,7 +54,6 @@ DO_SELENIUM = ( ...@@ -54,7 +54,6 @@ DO_SELENIUM = (
class SeleniumTests(LiveServerTestCase, RegistrationTestMixin): class SeleniumTests(LiveServerTestCase, RegistrationTestMixin):
caps = { caps = {
'browserName': 'firefox', 'browserName': 'firefox',
'version': '39.0',
'platform': 'Linux', 'platform': 'Linux',
} }
...@@ -291,10 +290,16 @@ EXTRA_PLATFORMS = { ...@@ -291,10 +290,16 @@ EXTRA_PLATFORMS = {
'browserName': 'chrome', 'browserName': 'chrome',
'platform': 'XP', 'platform': 'XP',
}, },
'Edge': {
'platform': 'Windows 10',
}
'Safari': {
'platform': 'OS X 10.11',
}
'MSIE9': { 'MSIE9': {
'browserName': 'internet explorer', 'browserName': 'internet explorer',
'version': '9', 'version': '9.0',
'platform': 'VISTA', 'platform': 'Windows 7',
}, },
'IPhone': { 'IPhone': {
'browserName': "iPhone", 'browserName': "iPhone",
......
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