Changelog History
Page 1
-
v1.11.6
April 21, 2020 -
v1.11.5 Changes
September 27, 2019๐ This is a patch release contain bug fixes for IE11.
-
v1.11.4 Changes
January 29, 2019๐ This is a patch release, fixing an issue with pushState use within the
file://
protocol. -
v1.11.3 Changes
November 09, 2018๐ Fixes a regression with options being passed into start()
-
v1.11.2 Changes
November 05, 2018๐ Fixes a bad build that was created in 1.11.1
-
v1.11.1 Changes
October 31, 2018๐ This is a patch release, fixing a bug with the page instance being configured twice when
page.create()
is used. Specials thanks to @jsnajdr for this bug fix. Pull request -
v1.11.0 Changes
October 24, 2018๐ This is a minor release that adds the clickHandler property.
-
v1.10.2 Changes
September 24, 2018๐ This is a patch release, fixing #501
-
v1.10.1 Changes
September 08, 2018๐ This is a patch release, fixing an issue from when clicking a link from within a page with query parameters, and navigating to the same page (such as a hash). Previously the
querystring
was not included in the Context object. This fixes that. -
v1.10.0 Changes
September 07, 2018๐ This is a minor release, adding the new
page.create()
API, for creating distinct page objects.Calling page.create(options) create a new page function that behaves just like the global page. It contains its own internal state, options, and event handlers. You can target the page to another window, like an iframe or a popup, if you want.
var newPage = page.create({ window: someIframe.contentWindow});
โ The main reason for adding this feature was to clean up or testing infrastructure. Numerous things had to be done in the past to make sure each test was cleanly in isolation. That stuff is no longer necessary now that we can just create a new page instance for each test.