# testcafe-browser-provider-electron-raynos

> TestCafe browser provider plugin for testing applications built with Electron.

Latest version **0.0.16** (published 2020-01-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install testcafe-browser-provider-electron-raynos
pnpm add testcafe-browser-provider-electron-raynos
yarn add testcafe-browser-provider-electron-raynos
bun add testcafe-browser-provider-electron-raynos
```

## Health

**Score 35/100 (D)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 0.0.16 |
| Published | 2020-01-05 |
| First published | 2020-01-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 13 |
| Unpacked size | 108.6 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 48 |
| Author | Developer Express Inc. |
| Maintainers | raynos |
| Keywords | testcafe, browser provider, plugin, electron |

## Links

- npm: https://www.npmjs.com/package/testcafe-browser-provider-electron-raynos
- Repository: https://github.com/DevExpress/testcafe-browser-provider-electron
- Issues: https://github.com/DevExpress/testcafe-browser-provider-electron/issues
- npm.io page: https://npm.io/package/testcafe-browser-provider-electron-raynos

## Dependencies (13)

- [pify](https://npm.io/package/pify.md) ^2.3.0
- [debug](https://npm.io/package/debug.md) 4.1.1
- [dedent](https://npm.io/package/dedent.md) ^0.7.0
- [lodash](https://npm.io/package/lodash.md) ^4.17.4
- [pinkie](https://npm.io/package/pinkie.md) ^2.0.4
- [mustache](https://npm.io/package/mustache.md) ^2.3.0
- [node-ipc](https://npm.io/package/node-ipc.md) ^9.1.0
- [os-family](https://npm.io/package/os-family.md) ^1.0.0
- [proxyquire](https://npm.io/package/proxyquire.md) ^1.7.10
- [babel-runtime](https://npm.io/package/babel-runtime.md) ^6.25.0
- [endpoint-utils](https://npm.io/package/endpoint-utils.md) ^1.0.2
- [promisify-event](https://npm.io/package/promisify-event.md) ^1.0.0
- [chrome-remote-interface](https://npm.io/package/chrome-remote-interface.md) ^0.27.0

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 0.0.16 (latest) — 2020-01-05

## README

# testcafe-browser-provider-electron
[![Build Status](https://travis-ci.org/DevExpress/testcafe-browser-provider-electron.svg)](https://travis-ci.org/DevExpress/testcafe-browser-provider-electron)

Use this plugin to test **Electron** applications with [TestCafe](http://devexpress.github.io/testcafe).

## Getting Started

### Installation

```sh
npm install testcafe-browser-provider-electron
```

### Testing a JavaScript Application

If your JavaScript application runs in Electron, follow these steps to set up testing.

1. Create a `.testcafe-electron-rc` file in the root application directory. Include the following settings to this file.

    ```json
    {
      "mainWindowUrl": "./index.html"
    }
    ```

    An Electron app has a file that is loaded as a startup page. TestCafe waits until Electron loads this page and then runs tests. Specify the path to this file with `mainWindowUrl` option. If a relative path is specified, it is resolved from the `.testcafe-electron-rc` file location.

    For information about other options, see the [Configuration](#configuration) section.

2. Install the Electron module of the required version.

    ```sh
    npm install electron@latest
    ```

    The command above installs the latest version of the Electron executable.

3. Define the path to the config file. Use browser provider postfix: `electron:<path_to_testcafe-electron-rc_directory>`. Then run tests.

    ```sh
    testcafe "electron:/home/user/electron-app" "<tests_directory>/**/*.js"
    ```

4. The `.testcafe-electron-rc` file might be not in the application root directory. In that case specify the path to the configuration file like this:

    ```json
    {
      "mainWindowUrl": "./index.html",
      "appPath":       "/home/user/my_app"  
    }
    ```
    
    In this instance, the `appPath` directory will be used as a working directory of the Electron application.
    
### Testing an Executable Electron Application

If your Electron app is built it has `<your_app_name>.exe` or `electron.exe` file. In that case you don't need an Electron module to run tests. Perform the following steps instead.

1. In the application directory, create a `.testcafe-electron-rc` file with the following settings.

    ```json
    {
        "mainWindowUrl": "./index.html",
        "electronPath":  "/home/user/myElectronApp/electron"
    }
    ```
    
    `mainWindowUrl` points to the application startup page; `electronPath` defines the path to your application's executable file. If you specify relative paths, they will be resolved from the `.testcafe-electron-rc` file location.
    
2. When you run tests, define the path to the configuration file. To do so, add the browser provider postfix: `electron:<path_to_testcafe-electron-rc_directory>`.

    ```sh
    testcafe "electron:/home/user/electron-app" "<tests_directory>/**/*.js"
    ```
    
### Launching Tests from API

To launch tests through the API, specify the application path with `electron:` prefix and pass it to the `browsers` method.

```js
testCafe
    .createRunner()
    .src('path/to/test/file.js')
    .browsers('electron:/home/user/electron-app')
    .run();
```

### Specifying Target Webpage in Test Code

In most cases, the target webpage is the main application page specified via the `mainWindowUrl` configuration option. 

```json
{
  "mainWindowUrl": "./index.html"
}
```

```js
fixture `Electron test`
    .page('./index.html');
```
However, you can specify any application page if your app contains more than one.

```js
fixture `Electron test`
    .page('./views/detail.html');
```

## Configuration

You can specify the following options in the `.testcafe-electron-rc` configuration file.

### mainWindowUrl

__Required.__ Specifies the URL of the application's main window page.
 For local application pages, you can also specify a relative (to the application directory) or an absolute path to the file of the page.

### appPath

__Optional.__ Alters path to the application, which, by default, must be located at the [default Electron app directory](https://github.com/electron/electron/blob/master/docs/tutorial/application-distribution.md#application-distribution).
You can use the `appPath` option to override the default path by specifying a new absolute path. Alternatively, you can append a relative path to the path specified after the "electron:" prefix.

### appArgs

__Optional.__ Overrides application command line arguments with the values specified in this option. It should be an array or an object with numeric keys.

### electronPath

__Optional__. Specifies a path to the electron binary. If `electronPath` is not specified, the [electron package](https://www.npmjs.com/package/electron) should be installed.
 On macOS, it can be either a path to the `electron` binary, or a path to the entire Electron.app (e.g. `/Applications/Electron.app`). It may be necessary to stop all other running 
 instances of the specified Electron binary.

### enableNavigateEvents

__Optional.__ `testcafe-browser-provider-electron` suppresses `did-navigate` and `will-navigate`  webContent events because you will be unable to run tests if these events are used to prevent navigation. You can enable them back by setting this option to `true`.

### openDevTools

__Optional.__ If `true`, DevTools will be opened just before tests start.

## Helpers
You can use helper functions from the provider in your test files. Use ES6 import statement to access them.

```js
import { getMainMenu, clickOnMenuItem } from 'testcafe-browser-provider-electron';
```

### getMainMenuItem

Gets a snapshot of the specified application's main menu item.

```js
async function getMainMenuItem (menuItemSelector)
```

Parameter          | Type   | Description
------------------ | ------ | -----
`menuItemSelector` | String | An array of menu item labels and/or objects with properties "label" and "index".

 For example, you can pass the following values in the `menuItemSelector` parameter.

 * `['File', 'Open']`
 * `['File', { label: 'Open' }]`
 * `Context Menu > Undo`


 If there are several menu items with the same label on the same level, you can specify a one-based "index"
 property:

 * `['Window', {label: 'My Window', index: 2}]`

 This value corresponds to the second menu item with label `My Window` in the `Window` menu.

 Check the properties available in the snapshot
 [here](https://github.com/electron/electron/blob/master/docs/api/menu-item.md).

**Example**

```js
import { getMainMenuItem } from 'testcafe-browser-provider-electron';

fixture `Electron test`
    .page('./index.html');

test('Check the menu item role', async t => {
    const menuItem = await getMainMenuItem(['Main Menu', 'Edit', 'Undo']);
    
    await t.expect(menuItem.role).eql('undo');    
});
```

### getContextMenuItem

Gets a snapshot of the specified menu item from the **most recently** opened context menu.

```js
async function getContextMenuItem (menuItemSelector)
```

Parameter          | Type   | Description
------------------ | ------ | -----
`menuItemSelector` | String | An array of menu item labels and/or objects with properties "label" and "index".

 For example, you can pass the following values in the `menuItemSelector` parameter.

 * `['Go To', 'Declaration']`
 * `['Go To', { label: 'Declaration' }]`

 If there are several menu items with the same label on the same level, you can specify a one-based "index"
 property:

 * `['Go To', {label: 'My Function', index: 2}]`

 This value corresponds to the second menu item with label `My Function` in the `Go To` submenu.

 Check the properties available in the snapshot
 [here](https://github.com/electron/electron/blob/master/docs/api/menu-item.md).

**Example**

```js
import { getContextMenuItem } from 'testcafe-browser-provider-electron';

fixture `Electron test`
    .page('./index.html');

test('Check the menu item role', async t => {
    await t.rightClick('.el');
    
    const menuItem = await getContextMenuItem(['Go To', {label: 'My Function', index: 2}]);
    
    await t.expect(menuItem.visible).ok();    
});
```

 ### getMainMenuItems

Gets an array of snapshots of the application's main menu items. If an item has a submenu, it will also be represented as an array of snapshots.

 ```js
 async function getMainMenuItems ()
 ```

 You can check properties available in snapshots
 [here](https://github.com/electron/electron/blob/master/docs/api/menu-item.md).

**Example**

```js
import { getMainMenuItems } from 'testcafe-browser-provider-electron';

fixture `Electron test`
    .page('./index.html');

test('Menu should contains the proper list of items', async t => {
    const menuItems = (await getMainMenuItems()).map(item => item.label);
    
    await t.expect(menuItems).eql(['File', 'Edit', 'Help']);
});
```

 ### getContextMenuItems

Gets an array of item snapshots from the **most recently** opened context menu. If an item has a submenu, it will also be represented as an array of snapshots.

 ```js
 async function getContextMenuItems ()
 ```

 You can check properties available in snapshots
 [here](https://github.com/electron/electron/blob/master/docs/api/menu.md),

**Example**

```js
import { getContextMenuItems } from 'testcafe-browser-provider-electron';

fixture `Electron test`
    .page('./index.html');

test('Context menu should contains the proper list of items', async t => {
    await t.rightClick('.element-with-context-menu');
    
    const menuItems = (await getContextMenuItems()).map(item => item.label);
    
    await t.expect(menuItems).eql(['Cut', 'Copy', 'Properties']);
});
```

 ### clickOnMainMenuItem

 Performs a click on the specified main menu item (`menuItem`).

 ```js
 async function clickOnMainMenuItem (menuItem, modifiers)
 ```

 Parameter          | Type   | Description
------------------ | ------ | -----
`menuItem` | String &#124; Object | The main menu item to click.
`modifiers` | Object | Control keys held when clicking the menu item.

 If you specify a string in the `menuItem` parameter, it will be passed to the [getMainMenuItem](#getmainmenuitem) function and the returned value will be used. Alternatively, you can pass a value returned by the [getMainMenuItem](#getmainmenuitem) or [getMainMenuItems](#getmainmenuitems) function.

 Use the `modifiers` parameter to specify state of the control keys (`Shift`, `Ctrl`, `Alt`, `Meta`). The default value is

 ```json
 {
     "shift": false,
     "ctrl":  false,
     "alt":   false,
     "meta":  false
 }
  ```

 **Examples**

```js
import { clickOnMainMenuItem } from 'testcafe-browser-provider-electron';

fixture `Test Electron`
   .page('./index.html');

test('Should open search panel', async t => {
   await clickOnMainMenuItem(['Main Menu', 'Edit', 'Find...']);
   
   await searchPanel = Selector('.search-panel');
   
   await expect(searchPanel.count).eql(1);
});
```

```js
import { clickOnMainMenuItem, getMainMenuItems } from 'testcafe-browser-provider-electron';

fixture `Test Electron`
    .page('./index.html');

test('Should create new file', async t => {
    await clickOnMainMenuItem(['File', 'New']);
    //Or
    await clickOnMainMenuItem((await getMainMenuItems())[0].submenu[0])
    
    await newFile = Selector('.file-item').withText('New File');
    
    await expect(newFile.count).eql(1);
});
```

### clickOnContextMenuItem

Performs a click on the specified menu item (`menuItem`) of the **most recently** opened context menu.

 ```js
 async function clickOnContextMenuItem (menuItem, modifiers)
 ```

 Parameter          | Type   | Description
------------------ | ------ | -----
`menuItem` | String &#124; Object | The main menu item to click.
`modifiers` | Object | Control keys held when clicking the menu item.

 If you specify a string in the `menuItem` parameter, it will be passed to the [getContextMenuItem](#getcontextmenuitem) function and the returned value will be used. Alternatively, you can pass a value returned by the [getContextMenuItem](#getcontextmenuitem) or [getContextMenuItems](#getcontextmenuitems) function.

 Use the `modifiers` parameter to specify state of the control keys (`Shift`, `Ctrl`, `Alt`, `Meta`). The default value is

 ```json
 {
     "shift": false,
     "ctrl":  false,
     "alt":   false,
     "meta":  false
 }
  ```

 **Examples**

```js
import { clickOnContextMenuItem } from 'testcafe-browser-provider-electron';

fixture `Test Electron`
    .page('./index.html');

test('Should open properties of element', async t => {
    await t.rightClick('.el');	   
    await clickOnContextMenuItem(['Properties...']);
    
    await elPropsPanel = Selector('.item-properties-panel');
    
    await expect(elPropsPanel.count).eql(1);
});
```

 ### setElectronDialogHandler

 Sets a function that will handle native Electron dialogs.

 ```js
 async function setElectronDialogHandler (handler, dependencies) 
 ```

  Parameter          | Type   | Description
------------------ | ------ | -----
`handler` | Function | A function that will handle Electron dialogs.
`dependencies` | Object | Variables passed to the `handler` function's scope as global variables.

 The `handler` function has the following signature.

 ```js
 function handler (type, ...args)
 ```

 This function must be synchronous. It will be invoked with the dialog type `type`, and the arguments `args`
 from the original dialog function.
 
 The `type` parameter takes one of the following values: 
 
 * `open-dialog`,
 * `save-dialog`,
 * `message-box`,
 * `error-box`,
 * `certificate-trust-dialog`.
 
 **Example**
 
 ```js
 import { setElectronDialogHandler } from 'testcafe-browser-provider-electron';

fixture `Electron test`
    .page('./index.html');

test('Test project opening', async t => {
    await setElectronDialogHandler((type, browserWindow, options) => {
    	//browserWindow, options are standard arguments of the opening dialog, you can use it for your purposes
        if(type !== 'open-dialog') 
            return;

        //it returns the file path from the open dialog
        return ['/home/user/project_name'];
    });

    await t
        .click('.open-project')
        //Here the open directory dialog opens and returns the path '/home/user/project_name'
        //After this, we check that the project was opened to get its name
        .expect('.project-name').eql('project_name');        
});
```
 
## Author
Developer Express Inc. (https://devexpress.com)

---
_Source: https://npm.io/package/testcafe-browser-provider-electron-raynos · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
