Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate a list of associations between states and Cypress actions #3

Open
johnkazer opened this issue Aug 10, 2019 · 0 comments
Open

Comments

@johnkazer
Copy link
Owner

johnkazer commented Aug 10, 2019

So for example, rather than hard-coding a cy.click() action for a given state there should be a pick-list that defines the action. A bit like this

const actionsPerState = {
	'captureImage': cy.click,
	'uploadImage': cy.click,
	'discardImage': cy.click,
	'recordAudio': cy.click,
	'stopAudio': cy.click,
	'uploadAudio': cy.click,
	'deleteAudio': cy.click
}

cy.click is a chained method not a function however, so it doesn't work as simply as you would hope.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant