0
0
Cypresstesting~10 mins

Cypress folder structure - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the folder where test files are stored in Cypress.

Cypress
cypress/[1]
Drag options to blanks, or click blank then click option'
Asupport
Bintegration
Cfixtures
Dplugins
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing the support folder with the test files folder.
Using fixtures folder which holds test data, not tests.
2fill in blank
medium

Complete the code to specify the folder where reusable commands and utilities are placed.

Cypress
cypress/[1]
Drag options to blanks, or click blank then click option'
Aplugins
Bintegration
Cfixtures
Dsupport
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing support with fixtures or integration folders.
Thinking plugins folder holds reusable commands.
3fill in blank
hard

Fix the error in the folder name that holds test data files.

Cypress
cypress/[1]
Drag options to blanks, or click blank then click option'
Afixtures
Bfixture
Cfixturees
Dfixures
Attempts:
3 left
💡 Hint
Common Mistakes
Using singular form 'fixture' instead of plural.
Misspelling the folder name.
4fill in blank
hard

Fill both blanks to complete the Cypress folder structure for plugins and test files.

Cypress
cypress/[1] and cypress/[2]
Drag options to blanks, or click blank then click option'
Aplugins
Bsupport
Cintegration
Dfixtures
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping plugins and support folders.
Confusing fixtures with plugins.
5fill in blank
hard

Fill all three blanks to complete the Cypress folder structure for test data, support files, and plugins.

Cypress
cypress/[1], cypress/[2], and cypress/[3]
Drag options to blanks, or click blank then click option'
Afixtures
Bsupport
Cplugins
Dintegration
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up the roles of support and plugins folders.
Confusing fixtures with integration.