Module: FolderListMethods
- 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
-
#mark_read ⇒ Object
Clicks the “Mark Read” link, then reinstantiates the class because the page partially refreshes.
-
#messages ⇒ Object
Clicks the Messages link in the Breadcrumb bar at the top of the page, then instantiates the Messages class.
- #move ⇒ Object
-
#open_message(subject) ⇒ Object
Clicks on the specified message subject then instantiates the MessageView class.
-
#subjects ⇒ Object
Creates an array consisting of the message subject lines.
- #unread_messages ⇒ Object
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
246 247 248 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 246 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.
255 256 257 258 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 255 def (subject) index=subjects.index(subject) frm.checkbox(:name=>"prefs_pvt_form:pvtmsgs:#{index}:_id122").set end |
#compose_message ⇒ Object
228 229 230 231 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 228 def frm.link(:text=>"Compose Message").click ComposeMessage.new(@browser) end |
#mark_read ⇒ Object
Clicks the “Mark Read” link, then reinstantiates the class because the page partially refreshes.
272 273 274 275 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 272 def mark_read frm.link(:text=>"Mark Read").click MessagesReceivedList.new(@browser) end |
#messages ⇒ Object
Clicks the Messages link in the Breadcrumb bar at the top of the page, then instantiates the Messages class
264 265 266 267 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 264 def frm.link(:text=>"Messages").click Messages.new(@browser) end |
#move ⇒ Object
292 293 294 295 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 292 def move frm.link(:text, "Move").click MoveMessageTo.new(@browser) end |
#open_message(subject) ⇒ Object
Clicks on the specified message subject then instantiates the MessageView class.
235 236 237 238 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 235 def (subject) frm.link(:text, /#{Regexp.escape(subject)}/).click MessageView.new(@browser) end |
#subjects ⇒ Object
Creates an array consisting of the message subject lines.
279 280 281 282 283 284 285 286 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 279 def subjects titles = [] = frm.table(:id=>"prefs_pvt_form:pvtmsgs") 1.upto(.rows.size-1) do |x| titles << .row(:index=>x).a.title end return titles end |
#unread_messages ⇒ Object
288 289 290 |
# File 'lib/kuali-sakai-common-lib/messages.rb', line 288 def # TODO - Write this method end |