This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vagrant@desktop02:~$ node --version | |
v8.11.1 | |
vagrant@desktop02:~$ npm ls selenium-webdriver --depth=0 | |
[email protected] /home/vagrant | |
└── [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16:42:11.167 INFO [GridLauncherV3.launch] - Selenium build info: version: '3.11.0', revision: 'e59cfb3' | |
16:42:11.167 INFO [GridLauncherV3$1.launch] - Launching a standalone Selenium Server on port 4444 | |
2018-03-19 16:42:11.276:INFO::main: Logging initialized @425ms to org.seleniumhq.jetty9.util.log.StdErrLog | |
16:42:11.573 INFO [SeleniumServer.boot] - Welcome to Selenium for Workgroups.... | |
16:42:11.573 INFO [SeleniumServer.boot] - Selenium Server is up and running on port 4444 | |
16:42:25.980 INFO [ActiveSessionFactory.apply] - Capabilities are: Capabilities {acceptSslCerts: true, browserName: firefox, cssSelectorsEnabled: true, elementScrollBehavior: 0, handlesAlerts: true, javascriptEnabled: true, locationContextEnabled: true, loggingPrefs: org.openqa.selenium.logging..., name: , nativeEvents: true, pageLoadStrategy: normal, platform: WINDOWS, requestOrigins: {name: webdriverio, url: http://webdriver.io, version: 4.10.1}, rotatable: true, takesScreenshot: true, unexpectedAlertBehaviour: dismiss, unhandledPromptBe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// code change for: | |
// https://github.com/gkushang/cucumber-html-reporter/issues/129 | |
'use strict'; | |
var jsonFile = require('jsonfile'); | |
var _ = require('lodash'); | |
var fs = require('fs-extra'); | |
var path = require('path'); | |
var jsonDir = require('./jsonDir'); |