nightmare
nightmare copied to clipboard
A high-level browser automation library.
I've been trying a lot of different ways to run the nightmare 2 times asynchronous and nothing worked. This is my current code: ``` const Nightmare = require('nightmare'); var bluebirdNightmare...
I have error: "Enable secure playback in your browser", how to enable secure playback in Nightmare?
This includes some readme updates to help people dealing with some common problems get started I was having a lot of issues with running this inside docker and these details...
Is Nightmare still being maintained? I ask because it's on a really old version of Electron. There's 14 outstanding pull requests and 113 open issues. It looks like no code...
Hi, everyone! I'm new using nightmare.js. I need to solve exercise below, I have already done something, but still have no idea what to do the next. a). Navigate to...
I'm having this kind of trouble. how to solve it.. I don't know.. i just fix something and add and commit but when i `git commit -m "something"` this is...
I am trying to call multiple instances through a loop, but he nightmare "loses" the target. `const Nightmare = require('nightmare') const nightmare = Nightmare({show: true, typeInterval: 1, skipTaskbar:true, webPreferences:{ partition:...
like this ``` function hello(){ return 'hello' } let res=await nightmare.evaluate((hello) =>{ return hello(); }) ``` but let's do that is ok ``` hello='hello'; let res=await nightmare.evaluate((hello) =>{ return hello;...