segment-boneyard / nightmare

A high-level browser automation library.
https://open.segment.com
19.54k stars 1.08k forks source link

cant run example DuckDuck,white screen inelectron #1624

Open nemeshine opened 3 years ago

nemeshine commented 3 years ago

hi, i tried and learn nightmarejs, when i run the example duckduck the out put in electronjust white screen can sombody helpme?? i hope i can learn or get some experience form here

version windows 10 64bit "nightmare": "^3.0.2"

const Nightmare = require('nightmare');
const nightmare = Nightmare({show: true});

nightmare
  .goto('https://duckduckgo.com')
  .type('#search_form_input_homepage', 'github nightmare')
  .click('#search_button_homepage')
  .wait('#r1-0 a.result__a')
  .evaluate(() => document.querySelector('#r1-0 a.result__a').href)
  .end()
  .then(console.log)
  .catch(error => {
    console.error('Search failed:', error)
  })

Screenshot 2021-03-09 100904