From 86cda2cf5a9ee4c8a8a04595f73dd467bdd47312 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Thu, 28 Sep 2023 13:22:01 -0400 Subject: [PATCH] spelling: sample Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- tests/pages/home.page.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pages/home.page.js b/tests/pages/home.page.js index e9cfa9b3..4aff24ce 100644 --- a/tests/pages/home.page.js +++ b/tests/pages/home.page.js @@ -10,7 +10,7 @@ exports.HomePage = class HomePage { // sample collection this.loadSampleCollectionSuccessToast = page.getByText('Sample Collection loaded successfully'); - this.sampeCollectionSelector = page.locator('#sidebar-collection-name'); + this.sampleCollectionSelector = page.locator('#sidebar-collection-name'); this.getUsersSelector = page.getByText('Users'); this.getSingleUserSelector = page.getByText('Single User'); this.getUserNotFoundSelector = page.getByText('User Not Found'); @@ -43,7 +43,7 @@ exports.HomePage = class HomePage { } async getUsers() { - await this.sampeCollectionSelector.click(); + await this.sampleCollectionSelector.click(); await this.getUsersSelector.click(); await this.sendRequestButton.click(); }