From ec53ad3858d3d33ac861f1bc6f1c8c2a95c87c61 Mon Sep 17 00:00:00 2001 From: John Date: Tue, 15 Nov 2022 23:59:49 -0500 Subject: [PATCH] Fixed type ext to text --- ONBOARDING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ONBOARDING.md b/ONBOARDING.md index c76f883..250d7cb 100644 --- a/ONBOARDING.md +++ b/ONBOARDING.md @@ -158,7 +158,7 @@ The functionality of FarmData2 is tested using the [Cypress framework](https://w The Cypress end-to-end test framework works by controlling the web browser. A test typically consists of a series of steps that are automated by the Cypress tests, called _spec_s. A typical spec consist of the steps: 1. Setup the test (e.g. login, prime the database) 1. Visit a specific page - 1. Query the page for an _html element_ of interest (e.g. button, ext field) + 1. Query the page for an _html element_ of interest (e.g. button, text field) 1. Interact with that element (e.g. click the button, enter some text) 1. Make an assertion about the result (e.g. new information appears on the page)