Sha256: cb37c76776f49d492ed716236adafe44ffb3ad37ff451e7d801804d52b3b92a4
Contents?: true
Size: 496 Bytes
Versions: 95
Compression:
Stored size: 496 Bytes
Contents
# frozen_string_literal: true require_relative "../page_object" module Pages module Admissions class Consults < PageObject def go visit admissions_consults_path self end def sort_by_modality within ".admissions-consults-table thead" do click_on "Modality" end end def has_patient?(patient) within ".admissions-consults-table" do has_content?(patient.to_s) end end end end end
Version data entries
95 entries across 95 versions & 1 rubygems