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
Selenium expects a pre-existing file : logs/selenium-debug.log, but boilerplate/scaffold files should never contain log files.
logs/selenium-debug.log
.gitignore cannot be used because then continuous integration servers will not get the file Selenium demands from GitHub.
.gitignore
The solution, in nightwatch.js, is to touch the file just before passing control to NightWatch.
nightwatch.js
touch
The text was updated successfully, but these errors were encountered:
That seems reasonable and well thought out. Rather than touch, we might use fs.writeFile() or something similar?
fs.writeFile()
Sorry, something went wrong.
Yeah, I didn't know the syntax used by that NodeJS library, so I referred to the operation generically.
No branches or pull requests
Selenium expects a pre-existing file :
logs/selenium-debug.log
, but boilerplate/scaffold files should never contain log files..gitignore
cannot be used because then continuous integration servers will not get the file Selenium demands from GitHub.The solution, in
nightwatch.js
, is totouch
the file just before passing control to NightWatch.The text was updated successfully, but these errors were encountered: