Skip to content

Commit

Permalink
Worked on #65: Avoid the check for server certificate in load testing…
Browse files Browse the repository at this point in the history
… browsers: fixed for chrome
  • Loading branch information
Antonis Tsakiridis committed Mar 18, 2016
1 parent 6a09e49 commit 2324ef1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/tools/restcomm-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,10 +402,11 @@ def processRunning(cmd):
#'--user-data-dir=' + str(client['id']),
#'--incognito',
#'--new-window',
'--no-first-run',
'--enable-logging',
'--use-fake-ui-for-media-stream',
'--use-fake-device-for-media-stream',
'--no-first-run', # even if it's the first time Chrome is starting up avoid showing the welcome message, which needs user intervention and causes issues on headless environment
'--enable-logging', # enable logging at the specified file
'--use-fake-ui-for-media-stream', # don't require user to grant permission for microphone and camera
'--use-fake-device-for-media-stream', # don't use real microphone and camera for media, but generate fake media
'--ignore-certificate-errors', # don't check server certificate for validity, again to avoid user intervention
#'--process-per-tab',
]

Expand Down

0 comments on commit 2324ef1

Please sign in to comment.