We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I added an additional subtask to update webdriver (using grunt-shell the way you do in your test seems counter intuitive to using this plugin)
grunt-shell
protractor_webdriver: { start: {}, update: { options: { command: 'webdriver-manager update' } } }
But this is the output I get when I run that task:
Running "protractor_webdriver:update" (protractor_webdriver) task Starting Selenium server
It's your plugin, so you can probably do something more interesting than this:
function start() { if(options.command.indexOf('update') != -1){ grunt.log.writeln('Updating'.cyan + ' Selenium server'); }else{ grunt.log.writeln((restartedPrefix + 'tarting').cyan + ' Selenium server'); } ------------------------- function data(out) { if(options.command.indexOf('update') != -1){ grunt.log.writeln('>> '.yellow + out); }else{ grunt.verbose.writeln('>> '.red + out); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I added an additional subtask to update webdriver (using
grunt-shell
the way you do in your test seems counter intuitive to using this plugin)But this is the output I get when I run that task:
It's your plugin, so you can probably do something more interesting than this:
The text was updated successfully, but these errors were encountered: