選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

globals.js 189 B

123456789101112
  1. var chromedriver = require("chromedriver");
  2. module.exports = {
  3. before: function(done) {
  4. chromedriver.start();
  5. done();
  6. },
  7. after: function() {
  8. chromedriver.stop();
  9. }
  10. };