From 2a28e509cbe8ce7c553dccbe03dd9a7a3c4c4726 Mon Sep 17 00:00:00 2001 From: Chris Brown Date: Tue, 14 Nov 2023 01:13:32 -0500 Subject: [PATCH 1/2] Update README.md for 3704 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. From d2a5b7fffd54a8303a6664a9614e0ef850db0c5a Mon Sep 17 00:00:00 2001 From: justint417 <156931329+justint417@users.noreply.github.com> Date: Fri, 5 Apr 2024 23:17:16 -0400 Subject: [PATCH 2/2] Update search.js --- test/search.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 +});