Skip to content

Commit

Permalink
Add booking page object
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobpa committed Apr 2, 2020
1 parent fc29718 commit b14f531
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/booking-page.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Input CSS Selectors
const elements = {
races: ['A', 'B', 'H', 'I', 'U', 'W'],
genders: ['F', 'M', 'T', 'U'],
searchButton: 'input#btnSearch',
genderSelector: 'select#GenderList',
raceSelector: 'select#RaceList',
ageInput: 'input#Age',
statusSelector: 'select#StatusList', // Disabled input
firstNameInput: 'input#InmateFirst',
lastNameInput: 'input#InmateLast',

resultsTable: 'table#Table1',
tableRow: 'tr.Table',
}

module.exports = elements;

0 comments on commit b14f531

Please sign in to comment.