How to use the chromedriver.stdout function in chromedriver

To help you get started, we’ve selected a few chromedriver examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github alibaba / uirecorder / lib / start.js View on Github external
getFreePort().then(function(port){
            wdPort = port;
            chromedriver = chromedriver.start(['--url-base=wd/hub', '--port='+wdPort]);
            chromedriver.stdout.unpipe(process.stdout)
            chromedriver.stderr.unpipe(process.stderr)
        });
    }