Skip to content
Snippets Groups Projects
Commit 53c3d483 authored by Fred Chasen's avatar Fred Chasen
Browse files

Add cli option for emulating media

parent b6d10e58
No related branches found
No related tags found
1 merge request!34Emulate print media
Pipeline #35898 passed with stages
in 2 minutes and 41 seconds
......@@ -41,6 +41,8 @@ program
collect, [])
.option("--browserEndpoint <browserEndpoint>", "Use a remote Chrome server with browserWSEndpoint")
.option("--browserArgs <browserArgs>", "Launch Chrome with comma separated args", commaSeparatedList)
.option("--media [media]", "Emulate \"print\" or \"screen\" media, defaults to print.")
.parse(process.argv);
function collect(value, previous) {
......@@ -115,7 +117,8 @@ if (typeof input === "string") {
additionalScripts: options.additionalScript,
browserEndpoint: options.browserEndpoint,
timeout: options.timeout,
browserArgs: options.browserArgs
browserArgs: options.browserArgs,
emulateMedia: options.media
};
if (options.forceTransparentBackground) {
......
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