vhost-audit/contrib/contextmenu/test/integration/dynamic-create.js

17 lines
608 B
JavaScript
Raw Permalink Normal View History

2021-03-16 20:50:02 -07:00
var pwd = process.cwd();
var helper = require('../integration_test_helper.js');
module.exports = {
'Dynamically created context menu is shown': function (test) {
test
.open('file://' + pwd + '/test/integration/html/dynamic-create.html')
.execute(helper.rightClick, '.context-menu-one')
.waitForElement('#context-menu-layer')
.assert.visible('.context-menu-root', 'Menu is present')
.assert.exists('.context-menu-root', 'It opens context menu')
.assert.numberOfElements('.context-menu-root li')
.is(7, '7 context menu items are shown')
.done();
}
};