diff --git a/README.md b/README.md index 082f501..8e38e0d 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Browser Automation -Basic browser automation techniques for the CS-5704 Testing workshop +Basic browser automation techniques for the CS-3704 Development Environments and Testing workshop. diff --git a/test/search.js b/test/search.js index 0d18fe4..657fa2b 100644 --- a/test/search.js +++ b/test/search.js @@ -20,7 +20,7 @@ describe('Duck Duck Go search using basic Puppeteer', function () { }); it('should be the correct url', async () => { - expect(await page.url()).to.eql('https://google.com/'); + expect(await page.url()).to.eql('https://duckduckgo.com/'); }); it('should have the correct page title', async () => { @@ -28,6 +28,6 @@ describe('Duck Duck Go search using basic Puppeteer', function () { }); it('should have the page open', async () => { - expect(await page.isClosed()).to.eql(true); + expect(await page.isClosed()).to.eql(false); }); -}); \ No newline at end of file +});