python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Cypress with typescript custom commands type error
I've setup custom commands for my Cypress tests :
// cypress/support/commands.ts
/// <reference types="cypress"/>
Cypress.Commands.add('getByTestId', (target: [string], timeout: numbe...
JuleZ
Votes: 0
Answers: 2
How to run E2E test with Cypress if backend and frontend are on different repos?
I have a React frontend and a Node backend, I've made several E2E tests with Cypress for the frontend and run them locally. I love how end to end testing allows me to catch errors in the frontend as w...
Jorche
Votes: 0
Answers: 1
Cannot obtain information about the node because the specified selector does not match any node in the DOM tree
I am working with testCafe for the first time and I am trying to write a test that clicks the name of a specific patient in a list of patients displayed.
The error that I am getting is as follows:
Ca...

Daniel
Votes: 0
Answers: 3
Cypress : Run same test on 2 different url (to avoid copy paste same code)
I would like to know if there is a way to rerun the same tests twice (second time with different url) to avoid copy paste of the exact same code should look like something like this :
describe('...', ...
JuleZ
Votes: 0
Answers: 2