Top "E2e-testing" questions

End-to-end testing is a methodology used to test whether the flow of an application is performing as designed from start to finish.

Cypress pipe console.log and command log to output

Is it possible to redirect or capture Cypress browser log and command log to output? I read some Cypress github …

e2e-testing cypress
Run a NOT headless chrome on a docker container

Running chrome on docker machines is only possible when chrome is headless. Unfortunately, headless chrome can't ignore certificate errors which …

node.js docker ubuntu docker-machine e2e-testing
Cypress: How to know if element is visible or not in using If condition?

I want to know if an element is visible or not. I am not sure how to do that. I …

e2e-testing cypress
Cypress ParseError: 'import' and 'export' may appear only with 'sourceType: module'

I updated Cypress from 3.0.3 to 3.1.3. Im using ES6 import/export modules which must be working related to docs. But Im …

javascript babeljs browserify e2e-testing cypress
"unable to connect to renderer" : Unable to resize or maximize the browser window using protractor with chrome beta

I am using Protractor and jasmine. I have Identified that chrome driver version: 2.32.498550 (latest) is not compatible with the chrome …

selenium-webdriver jasmine protractor selenium-chromedriver e2e-testing
Grunt Karma unit task fail with AngularJS project

I have a problem executing grunt karma:unit, the task finished but throw this: ....... DEBUG [web-server]: serving (cached): C:/project/…

angularjs unit-testing e2e-testing
Async setup of environment with Jest

Before running e2e tests in Jest I need to get an authentication token from the server. Is it possible …

javascript jest e2e-testing
Cypress test: is .contains() equivalent to should('contain')?

Is this: cy.get('[name=planSelect]').contains(dummyPlan) equivalent to this: cy.get('[name=planSelect]').should(…

e2e-testing cypress
How to run Protractor e2e tests using different Angular environment variables

I use Angular environment variables to configure API endpoints: .\src\environments: environment.ts environment.test.ts environment.prod.ts The …

angular protractor environment-variables e2e-testing