testcafe: Questions: "Failed to find DNS-record for resource at https://www.google.com"
Hi, I decide to try this test framework and got this error. Same with you test page. I’m in corporate network with some firewall restrictions, but both pages are available if I try it in browser. Maybe you have any idea what could be wrong? Sorry if this such silly report.
Test code
import { Selector } from 'testcafe';
const articleHeader = Selector('#article-header');
fixture `Getting Started`
.page `https://www.google.com/`;
test('My first test', async t => {
await t
.typeText('#lst-ib', 'Peter Parker')
.click('[type="submit"]')
.expect(true).eql(false);
});
Specify your
- operating system: Win 7
- testcafe version: 0.11.1
- node.js version: 6.9.1
About this issue
- Original URL
- State: closed
- Created 7 years ago
- Comments: 20 (9 by maintainers)
Thanks, I’ve reproduced the problem and created a separate issue.