New version of Chrome/ChromeDriver seems to have a problem with insecure
certificates.
Since we use a vStart cluster with no real certificate,
we always face this problem when running e2e tests.
This will fix the current problem and hopefully any future problems related to
certificates.
Fixes: https://tracker.ceph.com/issues/43254
Signed-off-by: Tiago Melo <tmelo@suse.com>
(cherry picked from commit
f0f718f1770bf48028274c100406e0a564710174)
'browserName': 'chrome',
chromeOptions: {
args: ['--no-sandbox', '--headless', '--window-size=1920x1080']
- }
+ },
+ acceptInsecureCerts : true
},
directConnect: true,
baseUrl: 'http://localhost:4200/',