1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-03-19 21:28:32 +02:00

Updated changelog

This commit is contained in:
Tim Voronov 2020-09-14 22:25:32 -04:00
parent ccaf15e1f4
commit 63efc6721e
2 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,8 @@
### 0.12.0 ### 0.12.0
#### Added #### Added
- iframe navigation handling [#535](https://github.com/MontFerret/ferret/pull/535) - iFrame navigation handling [#535](https://github.com/MontFerret/ferret/pull/535)
- ``FRAMES`` function for fast frame lookup [#535](https://github.com/MontFerret/ferret/pull/535)
- Assertion library [#526](https://github.com/MontFerret/ferret/pull/526) - Assertion library [#526](https://github.com/MontFerret/ferret/pull/526)
#### Changed #### Changed

View File

@ -20,6 +20,10 @@ type WaitNavigationParams struct {
// Stops the execution until the navigation ends or operation times out. // Stops the execution until the navigation ends or operation times out.
// @param {HTMLPage} page - Target page. // @param {HTMLPage} page - Target page.
// @param {Int} [timeout=5000] - Navigation timeout. // @param {Int} [timeout=5000] - Navigation timeout.
// @param {Object} [params=None] - Navigation parameters.
// @param {Int} [params.timeout=5000] - Navigation timeout.
// @param {Int} [params.target] - Navigation target url.
// @param {HTMLDocument} [params.frame] - Navigation frame.
func WaitNavigation(ctx context.Context, args ...core.Value) (core.Value, error) { func WaitNavigation(ctx context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 1, 2) err := core.ValidateArgs(args, 1, 2)