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

83
Views
Cyppress.io - lag on expanding long page

I am building a web scraper using cypress to scrape all apps from Atlassian marketplace

https://marketplace.atlassian.com/search

The problem is the page has load more button which need to be clicked to load more apps. When I did this in cpypress it take for ever to scroll and load all apps.

My code:

import { times } from 'lodash'

describe('Scraping Marketplace', () => {
    it('Visits The Marketlace and scrape all data to csv', () => {
        cy.visit('https://marketplace.atlassian.com/addons/top-rated');

        cy.get('.css-yki7vm-AkButtonWrapper > button').find('span').should('exist').then(() => {
            times(10000, () => {
                if (cy.get('.css-yki7vm-AkButtonWrapper > button').find('span').should('exist')) {
                    cy.get('.css-yki7vm-AkButtonWrapper > button').find('span').click({force: true});
                } else {
                    return false;
                }
            });
        })
    })
})
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!