Skip to content

Releases: Davincible/chromedp-undetected

v1.3.8

24 Aug 17:29
77d6161
Compare
Choose a tag to compare

Full Changelog: v1.3.7...v1.3.8

Add the config option to load chrome extensions by providing the extension path.

v1.3.7

24 Aug 15:59
8c6b7d0
Compare
Choose a tag to compare

Full Changelog: v1.3.6...v1.3.7

Add network idle listener to detect when no new network requests have been made for a period of time. This can be used as a proxy to detect when a page has been fully loaded, assuming no new requests were made within that time (e.g. 1 second).

			idleListener := NetworkIdleListener(ctx, 
				// Time no new requests are allowed to be made for the network to be considered idle
				time.Second,
				// Timeout after which the event is considered timed out.
				time.Second*10,
			)

			if err := chromedp.Run(ctx,
				chromedp.Navigate("https://nowsecure.nl"),
			); err != nil {
				return err
			}

			if event := <-idleListener; !event.IsIdle {
				return fmt.Errorf("expected idle event, got %v", event)
			}

v1.3.6

23 Aug 12:39
0c1186c
Compare
Choose a tag to compare

Full Changelog: v1.3.5...v1.3.6

Include the move mouse action

v1.3.5

25 May 17:14
1a1b10f
Compare
Choose a tag to compare

What's Changed

  • fix: support MacOS/Windows in non-headless mode. by @mihaiav in #7
  • chore(deps): bump github.com/chromedp/chromedp from 0.8.6 to 0.9.1 by @dependabot in #11

New Contributors

Full Changelog: v1.3.4...v1.3.5

v1.3.4

06 Jan 02:46
f84b63c
Compare
Choose a tag to compare

What's Changed

Add SendKeys action.

Full Changelog: v1.3.3...v1.3.4

v1.3.3

25 Dec 20:05
8932d3d
Compare
Choose a tag to compare

Add save cookies function.

Full Changelog: v1.3.2...v1.3.3

v1.3.2

25 Dec 17:43
4227827
Compare
Choose a tag to compare

Add util functions. See readme for details.

Full Changelog: v1.3.1...v1.3.2

v1.3.1

06 Dec 02:59
55bf779
Compare
Choose a tag to compare

Full Changelog: v0.1.3...v1.3.1

Apologies for the strange versioning. This was supposed to be v0.1.4 but I fucked up. Don't release at 4am.

v0.1.3

06 Dec 02:25
b54b298
Compare
Choose a tag to compare
Update README.md

v0.1.2

06 Dec 01:44
6344b8e
Compare
Choose a tag to compare

Full Changelog: v0.1.1...v0.1.2