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

Plugin for Cypress #32

Closed
thiagodp opened this issue Mar 20, 2019 · 1 comment
Closed

Plugin for Cypress #32

thiagodp opened this issue Mar 20, 2019 · 1 comment
Labels
enhancement New feature or request help wanted Extra attention is needed plugin third-party Something is happening with a third party library or dependency tool integration Integration with third party tools

Comments

@thiagodp
Copy link
Owner

Cypress is a promising opensource testing framework for Chrome and cross browser support is in the roadmap.

Example:

describe('My First Test', function() {
  it('Gets, types and asserts', function() {
    cy.visit('https://example.cypress.io')

    cy.contains('type').click()

    // Should be on a new URL which includes '/commands/actions'
    cy.url().should('include', '/commands/actions')

    // Get an input, type into it and verify that the value has been updated
    cy.get('.action-email')
      .type('fake@email.com')
      .should('have.value', 'fake@email.com')
  })
})
@thiagodp thiagodp added enhancement New feature or request help wanted Extra attention is needed plugin tool integration Integration with third party tools third-party Something is happening with a third party library or dependency labels Mar 20, 2019
@thiagodp thiagodp mentioned this issue May 4, 2019
@thiagodp
Copy link
Owner Author

thiagodp commented May 4, 2019

Moved to #39

@thiagodp thiagodp closed this as completed May 4, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed plugin third-party Something is happening with a third party library or dependency tool integration Integration with third party tools
Projects
None yet
Development

No branches or pull requests

1 participant