Module: MessagesDeletedListMethods
- Includes:
- PageObject
- Defined in:
- lib/kuali-sakai-common-lib/messages.rb
Instance Method Summary collapse
-
#alert_message_text ⇒ Object
Grabs the text from the message box that appears after doing some action.
-
#check_message(subject) ⇒ Object
Checks the checkbox for the specified message in the list.
- #compose_message ⇒ Object
- #delete ⇒ Object
-
#header ⇒ Object
Returns a string consisting of the content of the page header–or “breadcrumb”, as it’s called.
-
#messages ⇒ Object
Clicks the “Messages” breadcrumb link to return to the top level of Messages.
- #move ⇒ Object
-
#subjects ⇒ Object
Creates an array consisting of the message subject lines.
Instance Method Details
#alert_message_text ⇒ Object
Grabs the text from the message box that appears after doing some action.
Use this method to simplify writing Test::Unit asserts
356 357 358 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 356 def frm.span(:class=>"success").text end |
#check_message(subject) ⇒ Object
Checks the checkbox for the specified message in the list.
Will throw an error if the specified subject is not present.
376 377 378 379 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 376 def (subject) index=subjects.index(subject) frm.checkbox(:name=>"prefs_pvt_form:pvtmsgs:#{index}:_id122").set end |
#compose_message ⇒ Object
345 346 347 348 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 345 def frm.link(:text=>"Compose Message").click ComposeMessage.new(@browser) end |
#delete ⇒ Object
386 387 388 389 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 386 def delete frm.link(:text=>"Delete").click MessageDeleteConfirmation.new(@browser) end |
#header ⇒ Object
Returns a string consisting of the content of the page header–or “breadcrumb”, as it’s called.
333 334 335 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 333 def header frm.div(:class=>"breadCrumb specialLink").text end |
#messages ⇒ Object
Clicks the “Messages” breadcrumb link to return to the top level of Messages. Then instantiates the Messages class.
340 341 342 343 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 340 def frm.link(:text=>"Messages").click Messages.new(@browser) end |
#move ⇒ Object
381 382 383 384 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 381 def move frm.link(:text, "Move").click MoveMessageTo.new(@browser) end |
#subjects ⇒ Object
Creates an array consisting of the message subject lines.
362 363 364 365 366 367 368 369 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 362 def subjects titles = [] = frm.table(:id=>"prefs_pvt_form:pvtmsgs") 1.upto(.rows.size-1) do |x| titles << [x][2].text end return titles end |