2019-12-06 03:29:16 +08:00
|
|
|
// Copyright (c) Microsoft Corporation.
|
|
|
|
// Licensed under the MIT license.
|
|
|
|
|
2019-12-21 04:44:15 +08:00
|
|
|
module.exports.playwright = browser => {
|
2019-12-06 03:29:16 +08:00
|
|
|
if (browser === 'chromium')
|
|
|
|
return require('./chromium');
|
|
|
|
if (browser === 'firefox')
|
|
|
|
return require('./firefox');
|
|
|
|
if (browser === 'webkit')
|
|
|
|
return require('./webkit');
|
|
|
|
throw new Error(`Unsupported browser "${browser}"`);
|
|
|
|
};
|