Able to replicate this issue on both:
System: Ubuntu 16.04, Chrome Version 65.0.3325.146 (Official Build) (64-bit)
System: Windows 10, Version 64.0.3282.186 (Official Build) (64-bit)
Example 1: Google. Navigate to google, click on input, add text, search. Daydream is only returning
const Nightmare = require('nightmare')
const nightmare = Nightmare({ show: true })
nightmare
.goto('https://www.google.com/')
.end()
.then(function (result) {
console.log(result)
})
.catch(function (error) {
console.error('Error:', error);
});
and
const puppeteer = require('puppeteer')
(async () => {
const browser = await puppeteer.launch()
const page = await browser.newPage()
await page.goto('https://www.google.com/')
await browser.close()
})()
Example 2: Github. Navigate to github daydream repository, click on search input for this repository, add text, search. Daydream is only returning:
const Nightmare = require('nightmare')
const nightmare = Nightmare({ show: true })
nightmare
.goto('https://github.com/segmentio/daydream')
.end()
.then(function (result) {
console.log(result)
})
.catch(function (error) {
console.error('Error:', error);
});
and
const puppeteer = require('puppeteer')
(async () => {
const browser = await puppeteer.launch()
const page = await browser.newPage()
await page.goto('https://github.com/segmentio/daydream')
await browser.close()
})()
Tried the same on Wikipedia and Wiktionary with the same results.
Able to replicate this issue on both:
System: Ubuntu 16.04, Chrome Version 65.0.3325.146 (Official Build) (64-bit)
System: Windows 10, Version 64.0.3282.186 (Official Build) (64-bit)
Example 1: Google. Navigate to google, click on input, add text, search. Daydream is only returning
and
Example 2: Github. Navigate to github daydream repository, click on search input for this repository, add text, search. Daydream is only returning:
and
Tried the same on Wikipedia and Wiktionary with the same results.