-
I'm sorry for posting a "how-to" question in the issue section, but I'm not sure who I should contact or how else I can figure out this issue. I'm also a beginner, so this may be a very dumb question.…
-
Hello, I'm a newbie of nightmare, got this error: "Syntax error: unexpected identifier" for the below code
var nightmare = Nightmare();
function login () {
var a = yield nightmare
.goto('ht…
-
Help, I broke nightmare :(
I did this:
``` javascript
var Nightmare = require('nightmare')
Nightmare()
.goto('http://google.com')
.screenshot('goog.png')
.url(function(link) {
console.log('url is…
-
How is it possible to use phantomjs through nightmarejs with external scripts. I mean something like this:
```
phantomjs yslow.js --info basic http://www.yahoo.com
```
-
It occurred to me today that (most of the moving parts of) the tree viz in #1 can be tested on CI pretty readily:
- factor the tree viz so that the JSON tree sent to d3 can be requested via a URL
- st…
-
You guys have been so great getting to my questions. I'm still struggling up the learning curve with nightmarejs and vo.js and am hoping to get some help on syntax here.
I read the responses for usi…
-
Any plans to add support for SlimerJS and TrifleJS? I believe it has similar implementation.
Would be nice to see an `engine` method as an option (defaults to phantomjs).
``` javascript
var Nightmar…
-
Voici le fruit de mes recherches sur le framework de test mocha. Je mets quelques liens ici pour qu'on puisse discuter demain :
http://velocity.meteor.com/getting-started
http://mochajs.org/
Framew…
-
[ phantomjs -v 1.9.7 ]
Having set the options as best as I can see via that one sample that uses the timeout option:
new Nightmare({ignoreSslErrors : 'true', sslProtocol : 'tlsv1'})
also tried
new…
-
In PhantomJs we can get the content of page like this:
```
var page = require('webpage').create();
....
var content = page.content;
```
What is the best way to get the content is nightmarejs?(I can …