Files
cypress/system-tests/test/issue_8111_spec.js
2021-11-29 15:28:05 +10:00

16 lines
529 B
JavaScript

const systemTests = require('../lib/system-tests').default
describe('e2e issue 8111 iframe input focus', function () {
systemTests.setup()
systemTests.it('iframe input retains focus when browser is out of focus', {
// this test is dependent on the browser being Chrome headed
// and also having --auto-open-devtools-for-tabs plugins option
// (which pulls focus from main browser window)
project: 'issue-8111-iframe-input',
spec: 'iframe_input_spec.js',
browser: 'chrome',
headed: true,
})
})