Releases: Davincible/chromedp-undetected
v1.3.8
Full Changelog: v1.3.7...v1.3.8
Add the config option to load chrome extensions by providing the extension path.
v1.3.7
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
Full Changelog: v1.3.5...v1.3.6
Include the move mouse action
v1.3.5
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
v1.3.3
Add save cookies function.
Full Changelog: v1.3.2...v1.3.3
v1.3.2
Add util functions. See readme for details.
Full Changelog: v1.3.1...v1.3.2
v1.3.1
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
Update README.md
v0.1.2
Full Changelog: v0.1.1...v0.1.2