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

270
Views
Cypress read contenu PDf file

Cypress read contenu PDf file

I want to retrieve the content of a pdf in my cypress test

index.js:

const path = require('path')
const pdf = require('pdf-parse')
const repoRoot = path.join(__dirname, '..', '..')

const parsePdf = async (pdfName) => {
  const pdfPathname = path.join(repoRoot, pdfName)
  let dataBuffer = fs.readFileSync(pdfPathname);
  return await (pdf(dataBuffer))  // use async/await since pdf returns a promise
}

module.exports = (on, config) => {
    on('task', {
        getPdfContent (pdfName) {
            return (parsePdf(pdfName))
        }
    })
     return config
}

steps.js:

  cy.task('getPdfContent', 'cypress/fixtures/justificatifs/attestation.pdf').then(content => {
                    cy.log(content)
      })

why is it not working?

Cdt

about 4 years ago · Juan Pablo Isaza
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!