WebPage (children of AbstractWebPage) encapsulates a real web page. For example,
beginAt("/home")
@web_browser.clickLinkWithText("/login")
@web_browser.setFormElement("username", "sa")
Can be rewritten to
begin_at("/home")
home_page = HomePage.new
login_page = home_page.clickLoginLink
login_page.enterUserName("sa")
So you only need change in LoingPage class if UI changes, which happen quite often.
browser: passed to do assertion within the page page_text: text used to identify the page, title will be the first candidate
# File lib/rwebspec-common/web_page.rb, line 37 def initialize(the_browser, page_specific_text = nil) @web_browser = @browser = @web_tester = the_browser @page_specific_text = page_specific_text begin snapshot if $TESTWISE_DUMP_PAGE || $TESTWISE_DUMP_PAGE delay = $TESTWISE_PAGE_DELAY || $TESTWISE_PAGE_DELAY sleep(delay) rescue => e end assert_on_page end
# File lib/rwebspec-common/web_page.rb, line 63 def assert_not_on_page() assert_text_not_present(@page_specific_text) if @page_specific_text end
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
# File lib/rwebspec-common/web_page.rb, line 59 def assert_on_page() assert_text_present(@page_specific_text) if @page_specific_text end
return the browser instance in page objects
# File lib/rwebspec-common/web_page.rb, line 50 def browser @web_browser end
TO validate
# File lib/rwebspec-common/web_page.rb, line 92 def contains?(ary) return true if ary.nil? the_page_source = source found = false ary.each_line do |str| found ||= the_page_source.include?(str) end return found end
# File lib/rwebspec-common/web_page.rb, line 67 def dump(stream = nil) @web_browser.dump_response(stream) end
Will save current page source to a file
home_page = HomePage.new("Welcome to iTest2") ... home_page.snapshot() # => save to 20090830100102_HomePage.html
# File lib/rwebspec-common/web_page.rb, line 106 def snapshot(replace_css = false) save_current_page(:filename => Time.now.strftime("%m%d%H%M%S") + "_" + self.class.name.gsub(" ", "") + ".html" ) end
Page source (html)
# File lib/rwebspec-common/web_page.rb, line 72 def source @web_browser.page_source end
return current page text
# File lib/rwebspec-common/web_page.rb, line 83 def text @web_browser.text end
return current page title
# File lib/rwebspec-common/web_page.rb, line 78 def title @web_browser.page_title end
# File lib/rwebspec-common/web_page.rb, line 87 def url @web_browser.url end