░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/selenium/course_paces/pages
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: coursepaces_landing_page.rb
# frozen_string_literal: true # # Copyright (C) 2022 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. require_relative "../../common" module CoursePacesLandingPageObject #------------------------- Selectors ------------------------------- def community_info_text_selector "[data-testid='course-pacing-more-info-link'] a" end def context_link_selector(context_name) "//td[@data-testid = 'course-pace-item']/button//*[text() = '#{context_name}']" end def context_row_selector(context_name) "//tr[@data-testid = 'course-pace-row' and .//*[contains(text(), '#{context_name}')]]" end def context_table_page_selector(page_number) "//*[@data-testid = 'context-table-paginator']//button[.//*[contains(text(), '#{page_number}')]]" end def context_table_pagination_selector "[data-testid='context-table-paginator']" end def course_pace_context_table_selector "[data-testid='course-pace-context-table']" end def course_pace_table_rows_selector "[data-testid='course-pace-row']" end def course_paces_navigation_selector ".course_paces" end def course_paces_panda_selector ".course-paces-panda" end def create_default_pace_button_selector "[data-testid='go-to-default-pace']" end def default_duration_selector "[data-testid='default-pace-duration']" end def get_started_button_selector "[data-testid='get-started-button']" end def number_of_sections_selector "[data-testid='number-of-sections']" end def number_of_students_selector "[data-testid='number-of-students']" end def section_tab_selector "#tab-tab-section" end def student_tab_selector "#tab-tab-student_enrollment" end def search_input_selector "[data-testid='search-input']" end def search_button_selector "[data-testid='search-button']" end def table_column_name_selector "[data-testid='sortable-column-name']" end #------------------------- Elements -------------------------------- def community_info_text f(community_info_text_selector) end def context_link(context_name) fxpath(context_link_selector(context_name)) end def course_pace_context_table f(course_pace_context_table_selector) end def course_paces_navigation f(course_paces_navigation_selector) end def course_paces_panda f(course_paces_panda_selector) end def course_pace_table_rows ff(course_pace_table_rows_selector) end def context_row(context_name) fxpath(context_row_selector(context_name)) end def context_table_page(page_number) fxpath(context_table_page_selector(page_number)) end def context_table_pagination f(context_table_pagination_selector) end def create_default_pace_button f(create_default_pace_button_selector) end def default_duration f(default_duration_selector) end def get_started_button f(get_started_button_selector) end def number_of_sections f(number_of_sections_selector) end def number_of_students f(number_of_students_selector) end def section_tab f(section_tab_selector) end def student_tab f(student_tab_selector) end def search_input f(search_input_selector) end def search_button f(search_button_selector) end def table_column_name f(table_column_name_selector) end #----------------------- Actions & Methods ------------------------- #----------------------- Click Items ------------------------------- def click_context_link(context_name) context_link(context_name).click end def click_get_started_button get_started_button.click end def click_context_table_page(page_number) context_table_page(page_number).click end def click_course_paces_navigation course_paces_navigation.click end def click_create_default_pace_button create_default_pace_button.click end def click_edit_default_pace_button create_default_pace_button.click end def click_section_tab section_tab.click end def click_student_tab student_tab.click end def click_search_button search_button.click end def click_table_column_name table_column_name.click end #------------------------Retrieve Text ----------------------------- #------------------------Element Management ------------------------ end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 coursepaces_common_page.rb
RB
5.2 KB
2023-09-24 03:36
EDIT
📄 coursepaces_landing_page.rb
RB
4.9 KB
2023-09-24 03:36
EDIT
📄 coursepaces_page.rb
RB
19.2 KB
2023-09-24 03:36
EDIT