2021-02-01 11:43:26 -08:00
# class: ElectronApplication
* langs: js
Electron application representation. You can use [`method: Electron.launch` ] to
obtain the application instance. This instance you can control main electron process
as well as work with Electron windows:
```js
const { _electron: electron } = require('playwright');
(async () => {
// Launch Electron app.
const electronApp = await electron.launch({ args: ['main.js'] });
// Evaluation expression in the Electron context.
2021-04-04 14:06:30 -07:00
const appPath = await electronApp.evaluate(async ({ app }) => {
// This runs in the main Electron process, parameter here is always
// the result of the require('electron') in the main app script.
return app.getAppPath();
2021-02-01 11:43:26 -08:00
});
2021-04-04 14:06:30 -07:00
console.log(appPath);
2021-02-01 11:43:26 -08:00
// Get the first window that the app opens, wait if necessary.
const window = await electronApp.firstWindow();
// Print the title.
console.log(await window.title());
// Capture a screenshot.
await window.screenshot({ path: 'intro.png' });
// Direct Electron console to Node terminal.
window.on('console', console.log);
// Click button.
await window.click('text=Click me');
2021-04-04 14:06:30 -07:00
// Exit app.
await electronApp.close();
2021-02-01 11:43:26 -08:00
})();
```
## event: ElectronApplication.close
This event is issued when the application closes.
## event: ElectronApplication.window
2021-02-25 22:22:47 -08:00
- argument: < [Page]>
2021-02-01 11:43:26 -08:00
This event is issued for every window that is created **and loaded** in Electron. It contains a [Page] that can
be used for Playwright automation.
2021-05-02 22:45:06 -07:00
## async method: ElectronApplication.browserWindow
- returns: < [JSHandle]>
Returns the BrowserWindow object that corresponds to the given Playwright page.
### param: ElectronApplication.browserWindow.page
- `page` < [Page]>
Page to retrieve the window for.
2021-02-01 11:43:26 -08:00
## async method: ElectronApplication.close
Closes Electron application.
## method: ElectronApplication.context
2021-02-25 22:22:47 -08:00
- returns: < [BrowserContext]>
2021-02-01 11:43:26 -08:00
This method returns browser context that can be used for setting up context-wide routing, etc.
## async method: ElectronApplication.evaluate
- returns: < [Serializable]>
Returns the return value of [`param: expression` ].
If the function passed to the [`method: ElectronApplication.evaluate` ] returns a [Promise], then
[`method: ElectronApplication.evaluate` ] would wait for the promise to resolve and return its value.
If the function passed to the [`method: ElectronApplication.evaluate` ] returns a non-[Serializable] value, then
[`method: ElectronApplication.evaluate` ] returns `undefined` . Playwright also supports transferring
some additional values that are not serializable by `JSON` : `-0` , `NaN` , `Infinity` , `-Infinity` .
### param: ElectronApplication.evaluate.expression = %%-evaluate-expression-%%
### param: ElectronApplication.evaluate.arg
- `arg` < [EvaluationArgument]>
Optional argument to pass to [`param: expression` ].
## async method: ElectronApplication.evaluateHandle
- returns: < [JSHandle]>
Returns the return value of [`param: expression` ] as a [JSHandle].
The only difference between [`method: ElectronApplication.evaluate` ] and [`method: ElectronApplication.evaluateHandle` ] is that [`method: ElectronApplication.evaluateHandle` ] returns [JSHandle].
If the function passed to the [`method: ElectronApplication.evaluateHandle` ] returns a [Promise], then
[`method: ElectronApplication.evaluateHandle` ] would wait for the promise to resolve and return its value.
### param: ElectronApplication.evaluateHandle.expression = %%-evaluate-expression-%%
### param: ElectronApplication.evaluateHandle.arg
- `arg` < [EvaluationArgument]>
## async method: ElectronApplication.firstWindow
- returns: < [Page]>
Convenience method that waits for the first application window to be opened.
Typically your script will start with:
```js
const electronApp = await electron.launch({
args: ['main.js']
});
const window = await electronApp.firstWindow();
// ...
```
## async method: ElectronApplication.waitForEvent
- returns: < [any]>
Waits for event to fire and passes its value into the predicate function. Returns when the predicate returns truthy value. Will throw an error if the application is closed before the event is fired. Returns the event data value.
```js
const [window] = await Promise.all([
electronApp.waitForEvent('window'),
mainWindow.click('button')
]);
```
### param: ElectronApplication.waitForEvent.event = %%-wait-for-event-event-%%
### param: ElectronApplication.waitForEvent.optionsOrPredicate
* langs: js
- `optionsOrPredicate` < [function]|[Object]>
- `predicate` < [function]> receives the event data and resolves to truthy value when the waiting should resolve.
- `timeout` < [float]> maximum time to wait for in milliseconds. Defaults to `30000` (30 seconds). Pass `0` to
disable timeout. The default value can be changed by using the [`method: BrowserContext.setDefaultTimeout` ].
Either a predicate that receives an event or an options object. Optional.
## method: ElectronApplication.windows
- returns: < [Array]< [Page]>>
Convenience method that returns all the opened windows.