Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

157
Views
Checking length of element in beforeEach on Cypress

I'm trying to setup my beforeEach to create a new email if none exist before starting my tests, but when I try to count how many emails there are in my beforeEach, it always logs as 0, even if there are more. If I log the count in my it block, it shows the correct count.

Does this look correct? How can I properly check the count in the beforeEach so that it doesn't always create a new email for every test?

describe("email", () => {
  beforeEach(() => {
    cy.visit("/");

    let count = Cypress.$('#emails').length

    // always logs 0
    cy.log(count)

    if(count == 0) {
      createNewEmail()
    }
  });

  it("email", () => {
    let count = Cypress.$('#emails').length

    // logs correct amount
    cy.log(count)
  });
});

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Cypress commands are asynchronous. So when the test executes cy.visit("/") it does not mean that the next line will be executed after the page gets really loaded.

You can fix this as follows:

 beforeEach(() => {
    cy.visit("/").then(() => {
      let count = Cypress.$('#emails').length
      cy.log(count)
      if(count == 0) {
        createNewEmail()
      }
    })
}    

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!