@@ -44,10 +44,10 @@ const getHtmlSource = (t) =>
4444 * * `windowSize`: (optional) - set browser window width and height
4545 * * `getPageTimeout` (optional, default: '30000') config option to set maximum navigation time in milliseconds.
4646 * * `waitForTimeout`: (optional) default wait* timeout in ms. Default: 5000.
47- * * `browser`: (optional, default: chromium ) - See https://devexpress.github.io/testcafe/documentation/using-testcafe/common-concepts/browsers/browser-support.html
47+ * * `browser`: (optional, default: chrome ) - See https://devexpress.github.io/testcafe/documentation/using-testcafe/common-concepts/browsers/browser-support.html
4848 *
4949 *
50- * #### Example #1: Show chromium browser window
50+ * #### Example #1: Show chrome browser window
5151 *
5252 * ```js
5353 * {
@@ -56,7 +56,7 @@ const getHtmlSource = (t) =>
5656 * url: "http://localhost",
5757 * waitForTimeout: 15000,
5858 * show: true,
59- * browser: "chromium "
59+ * browser: "chrome "
6060 * }
6161 * }
6262 * }
@@ -108,7 +108,7 @@ class TestCafe extends Helper {
108108 this . options = {
109109 url : 'http://localhost' ,
110110 show : false ,
111- browser : 'chromium ' ,
111+ browser : 'chrome ' ,
112112 restart : true , // TODO Test if restart false works
113113 manualStart : false ,
114114 keepBrowserState : false ,
@@ -133,7 +133,7 @@ class TestCafe extends Helper {
133133 static _config ( ) {
134134 return [
135135 { name : 'url' , message : 'Base url of site to be tested' , default : 'http://localhost' } ,
136- { name : 'browser' , message : 'Browser to be used' , default : 'chromium ' } ,
136+ { name : 'browser' , message : 'Browser to be used' , default : 'chrome ' } ,
137137 {
138138 name : 'show' ,
139139 message : 'Show browser window' ,
0 commit comments