Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
fixing selector to be vue2 and vue3 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
hoeppner-dataport committed Feb 23, 2024
1 parent f5f9206 commit 766afb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions page-objects/pages/coursePages/CRSSCourseListPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const roomsOverview = require('../RoomsOverviewPage');
const courseDescription = '.ckcontent';
const courseDescriptionSel = '#courseDescription';
const courseHeader = '.sc-card-header';
const searchCourseFiled = '[data-testid="search-field"] input';
const searchCourseField = '[data-testid="search-field"] input, input[data-testid="search-field"]';
const courseWrapper = '.sc-card-wrapper';
const titleOfCourse = '.title';
const memberBtn = '.btn-member';
Expand Down Expand Up @@ -106,7 +106,7 @@ function getColourSelector(colourName) {
}

async function setCourseNameIntoSearchInputField(courseName) {
await waitHelpers.waitAndSetValue(searchCourseFiled, courseName);
await waitHelpers.waitAndSetValue(searchCourseField, courseName);
}

async function getCountOfDisplayedCoursesForSection(section) {
Expand Down

0 comments on commit 766afb0

Please sign in to comment.