-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
Description
- Operating System: MAC OS
- Cypress Version: 0.19.4
- Browser Version: Google Chrome, Version 61.0.3163.79
Is this a Feature or Bug?
Bug
Current behavior:
Cypress application is Crashing and shutting down.
Desired behavior:
It should not crash
How to reproduce:
Just running the following test.
Following is the cypress.json file
{
"baseUrl" : "https://qaserver.flqa.net",
"defaultCommandTimeout": 60000,
"screenshotOnHeadlessFailure" : false,
"videoRecording": false,
"chromeWebSecurity": false
}Test code:
describe('Test Module - Testing ', () => {
it('Visit the Url', () => {
cy.visit('/ec-forms');
cy.wait(10000);
})
it('Logging In', () => {
let userNameField = '#Username';
let passwordField = '#Password';
let loginButton = '#qa-button-login';
cy.get(userNameField, { timeout: 10000 })
.should('be.visible')
.type('ectester3');
cy.get(passwordField, { timeout: 10000 })
.should('be.visible')
.type('a12ds34567{enter}');
})
})Additional Info (images, stack traces, etc)
Cypress is crashing so i am not been able to capture stack trace.
Metadata
Metadata
Assignees
Labels
No labels