Class: SiteSetupParticipantConfirm
- Inherits:
-
SiteSetupBase
- Object
- PageFactory
- BasePage
- SiteSetupBase
- SiteSetupParticipantConfirm
- Defined in:
- lib/sambal-cle/page_objects/site_setup.rb
Overview
The confirmation page showing site participants and their set roles
Instance Method Summary collapse
-
#id(name) ⇒ Object
Returns the value of the id field for the specified name.
-
#role(name) ⇒ Object
Returns the value of the Role field for the specified name.
Methods inherited from SiteSetupBase
Methods inherited from BasePage
basic_page_elements, button, damballa, frame_element, link
Instance Method Details
#id(name) ⇒ Object
Returns the value of the id field for the specified name.
260 261 262 |
# File 'lib/sambal-cle/page_objects/site_setup.rb', line 260 def id(name) frm.table(:class=>"listHier").row(:text=>/#{Regexp.escape(name)}/)[1].text end |
#role(name) ⇒ Object
Returns the value of the Role field for the specified name.
265 266 267 |
# File 'lib/sambal-cle/page_objects/site_setup.rb', line 265 def role(name) frm.table(:class=>"listHier").row(:text=>/#{Regexp.escape(name)}/)[2].text end |