Cypress Test Runner avatar
Cypress Test Runner
Try for free

No credit card required

View all Actors
Cypress Test Runner

Cypress Test Runner

valek.josef/cypress-test-runner
Try for free

No credit card required

Run your Cypress tests on the Apify Platform effectively and easily. Just set up your test environment using a user-friendly UI and let the platform do the rest.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4client = ApifyClient("<YOUR_API_TOKEN>")
5
6# Prepare the Actor input
7run_input = {
8    "specCode": """describe('spec', () => {
9    it('test that should succeed', () => {
10        cy.visit('/');
11        cy.get('h1').should('contain', 'Example Domain');
12        cy.screenshot();
13    });
14
15     it('test that should fail', () => {
16        cy.visit('/');
17        cy.get('h1', { timeout: 1000 }).should('contain', 'Some different text');
18    });
19});""",
20    "baseUrl": "https://example.com",
21}
22
23# Run the Actor and wait for it to finish
24run = client.actor("valek.josef/cypress-test-runner").call(run_input=run_input)
25
26# Fetch and print Actor results from the run's dataset (if there are any)
27print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
28for item in client.dataset(run["defaultDatasetId"]).iterate_items():
29    print(item)
30
31# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Developer
Maintained by Apify
Actor metrics
  • 10 monthly users
  • 2 stars
  • 88.1% runs succeeded
  • Created in Apr 2023
  • Modified about 1 month ago