Class: MessagesDeletedList

Inherits:
BasePage show all
Defined in:
lib/sakai-cle-test-api/page_objects/messages.rb

Overview

The page showing the list of deleted messages.

Instance Method Summary collapse

Methods inherited from BasePage

basic_page_elements, frame_element

Methods inherited from PageMaker

element, expected_element, expected_title, #initialize, #method_missing, page_url

Constructor Details

This class inherits a constructor from PageMaker

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class PageMaker

Instance Method Details

#alert_message_textObject

Grabs the text from the message box that appears after doing some action.

Use this method to simplify writing Test::Unit asserts



355
356
357
# File 'lib/sakai-cle-test-api/page_objects/messages.rb', line 355

def alert_message_text
  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.



375
376
377
378
# File 'lib/sakai-cle-test-api/page_objects/messages.rb', line 375

def check_message(subject)
  index=subjects.index(subject)
  frm.checkbox(:name=>"prefs_pvt_form:pvtmsgs:#{index}:_id122").set
end

#compose_messageObject



344
345
346
347
# File 'lib/sakai-cle-test-api/page_objects/messages.rb', line 344

def compose_message
  frm.link(:text=>"Compose Message").click
  ComposeMessage.new(@browser)
end

#deleteObject



385
386
387
388
# File 'lib/sakai-cle-test-api/page_objects/messages.rb', line 385

def delete
  frm.link(:text=>"Delete").click
  MessageDeleteConfirmation.new(@browser)
end

#headerObject

Returns a string consisting of the content of the page header–or “breadcrumb”, as it’s called.



332
333
334
# File 'lib/sakai-cle-test-api/page_objects/messages.rb', line 332

def header
  frm.div(:class=>"breadCrumb specialLink").text
end

#messagesObject

Clicks the “Messages” breadcrumb link to return to the top level of Messages. Then instantiates the Messages class.



339
340
341
342
# File 'lib/sakai-cle-test-api/page_objects/messages.rb', line 339

def messages
  frm.link(:text=>"Messages").click
  Messages.new(@browser)
end

#moveObject



380
381
382
383
# File 'lib/sakai-cle-test-api/page_objects/messages.rb', line 380

def move
  frm.link(:text, "Move").click
  MoveMessageTo.new(@browser)
end

#subjectsObject

Creates an array consisting of the message subject lines.



361
362
363
364
365
366
367
368
# File 'lib/sakai-cle-test-api/page_objects/messages.rb', line 361

def subjects
  titles = []
  messages = frm.table(:id=>"prefs_pvt_form:pvtmsgs")
  1.upto(messages.rows.size-1) do |x|
    titles << messages[x][2].text
  end
  return titles
end