Method: RWebSpec::AbstractWebPage#assert_on_page
- Defined in:
- lib/rwebspec/web_page.rb
#assert_on_page ⇒ Object
Assert is on current page Example
home_page = HomePage.new("Welcome to iTest2")
....
home_page.assert_on_page # will check the text 'Welcome to iTest2' still present on the page
55 56 57 |
# File 'lib/rwebspec/web_page.rb', line 55 def assert_on_page() assert_text_present(@page_specific_text) if @page_specific_text end |