Provide functionality to click menu items and get their status within spectron tests.
npm install --save-dev spectron-menu-addon
import * as electron from 'electron'
import * as path from 'path'
import menuAddon from 'spectron-menu-addon'
const app = menuAddon.createApplication({ args: [path.join(__dirname, '..')], path: electron.toString() })
menuAddon.clickMenu('Config'); // 'Config' Menu click
menuAddon.clickMenu('File', 'Save'); // File->Save MenuItem click
await menuAddon.isItemEnabled('File', 'Reset')) // Verify if MenuItem File->Reset is enabled
https://github.com/SALT-AND-PEPPER/spectron-menu-addon/tree/master/example
Creates application to test
Find menu by labels and click. If the target is nested, it can be specified with variable length arguments.
ex) File -> Save:
menuAddon.clickMenu('File', 'Save')
Find menu item by labels and return that with following properties:
{
checked: boolean
enabled: boolean
label: string
visible: boolean
}
If the target is not found, label is returned as an empty string, all other properties are undefined.
If the target is nested, it can be specified with variable length arguments.
ex) File -> Open:
await menuAddon.getMenuItem('File', 'Open')
MIT