Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
Use phantomjs by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Tatarintsev committed Feb 20, 2014
1 parent 8879181 commit 529ec62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/browser.js
Expand Up @@ -7,9 +7,9 @@ var inherit = require('inherit'),

module.exports = inherit({
__constructor: function() {
this._driver = new webdriver.Builder().
withCapabilities(webdriver.Capabilities.chrome()).
build();
this._driver = new webdriver.Builder()
.withCapabilities(webdriver.Capabilities.phantomjs())
.build();
},

open: function(url) {
Expand Down

0 comments on commit 529ec62

Please sign in to comment.