mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-20 14:10:57 -06:00
16 lines
529 B
JavaScript
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,
|
|
})
|
|
})
|