Giter Club home page Giter Club logo

dv01-challenge's Introduction

dv01 Engineering Challenge

Joel Latta

Overview:

  • This repo is a basic application with Cypress installed to run the requested test files for this challenge.
  • The response to challenge 1 is in this README down below.
  • The test file for challenge 2 can be found in cypress/e2e/mortgage_spec.cy.js.

Installation Instructions:

  • Clone the repo

In the root folder, run the following commands in your terminal to start cypress locally:

  • npm install
  • npx cypress open

Challenge #1 - Psuedo code on how I would test a login workflow with a given URL:

With the HTML code provided, utilizing Cypress I would perform the following:

I would create a custom command in cypress/support/commands.js for cleanliness and ease as well as set the base url in the cypress.config file:

Cypress.Commands.add("getDataTest", (dataTestSelector) => {
    return cy.get(`[data-testid="${dataTestSelector}"]`);
});

Describe "login"
    BeforeEach
    Visit "/login"

It "logs in"
    Access email field with cy.getDataTest("EMAIL_INPUT_FIELD")
    Type a valid email with .type()
    Access password field with cy.getDataTest("PASSWORD_INPUT_FIELD")
    Type a valid password with .type()
    Click the login button with cy.get('#submit-login').click()
    Verify the redirected location after login with cy.url().should('include', '/dashboard')


It "should throw an error with invalid login"
    Access email field with cy.getDataTest("EMAIL_INPUT_FIELD")
    Type an invalid email with .type()
    Access password field with cy.getDataTest("PASSWORD_INPUT_FIELD")
    type an invalid password with .type()
    Click the login button with cy.get('#submit-login').click()
    Verify the correct error message is displayed

dv01-challenge's People

Contributors

joellatta24 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.