I'm using Protractor in Webstorm and in order to use parameters in the terminal I can do protractor --params.url=http://www.google.com/
Is there a way to specify params in this configuration so I don't have to type it every time? In a similar way to the screen below
相关问题
- Pass custom debug information to Microsoft bot fra
- How do I identify what code is generating “ '&
- I receive the error: cannot find module 'cucum
- “Failed: Error while waiting for Protractor to syn
- Timeout expired waiting for async script on IE 9
相关文章
- How do I get to see DbgPrint output from my kernel
- Protractor webdriver-manager chromedriver update
- Advanced profiling is unavailable for the selected
- Can't Inspect Variables When Debugging .NET As
- What is the difference between glibc's MALLOC_
- Chrome: fake microphone input for test purpose
- Embedding a program's source code into its bin
- How to execute another python script from your scr
Here is the configuration that worked for me
Set parameters (following examples were used on windows machine)
This config works great in my project, where we solely rely on async/await syntax
Protractor run configuration doesn't currently support passing command line options to protractor, please vote for WEB-25165 to be notified on any progress with this feature.
However, just as @tehbeardedone has mentioned,
params
can be specified in protractor config - see How can I use command line arguments in Angularjs Protractor?