Skip to content

v0.6.0

Compare
Choose a tag to compare
@ziflex ziflex released this 25 Dec 01:41
· 544 commits to master since this release

Added

  • Added support for context.Done() to interrupt an execution #201.
  • Added support for custom HTML drivers #209.
  • Added support for dot notation access and assignments for custom types #214
  • Added ELEMENT_EXISTS(doc, selector) -> Boolean function #210.
LET exists = ELEMENT_EXISTS(doc, ".nav")
  • Added PageLoadParams to DOCUMENT function #214.
LET doc = DOCUMENT("https://www.google.com/", {
    dynamic: true,
    timeout: 10000
})

Fixed

  • Math operators precedence #202.
  • Memory leak in DOWNLOAD function #213.

Breaking change

  • (Embedded) Removed builtin drivers initialization in Program #198.
    The initialization must be done via context manually.