Skip to content

Cypress application is Crashing and shutting down. #623

@hamzazaidi

Description

@hamzazaidi
  • 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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions