- Added a
waitTimeout
config option toApplication
that sets the default millisecond timeout for all wait-based command helpers likewaitUntil
,waitUntilWindowLoaded
, etc. This options defaults to 5 seconds. - Added a
windowByIndex(index)
command helper that focuses a window by index in thewindowHandles()
array order. - Added
setRepresentedFilename
andgetRepresentedFilename
command helpers. - Added
isDocumentEdited
andsetDocumentEdited
command helpers. setWindowDimensions
was renamed tosetWindowBounds
to mirror the new ElectronBrowserWindow.setBounds
API. It also takes abounds
object argument instead of multiple arguments for size and position. See theREADME
for an examplegetWindowDimensions
was renamed togetWindowBounds
to mirror the new ElectronBrowserWindow.getBounds
API. See theREADME
for an example.