class Grell::Page::UnvisitedPage

Private class. This is a result page when it has not been visited yet. Essentially empty of information

Public Instance Methods

body() click to toggle source
# File lib/grell/page.rb, line 88
def body
  ''
end
has_selector?(selector) click to toggle source
# File lib/grell/page.rb, line 108
def has_selector?(selector)
  false
end
headers() click to toggle source
# File lib/grell/page.rb, line 92
def headers
  {grellStatus: 'NotVisited' }
end
host() click to toggle source
# File lib/grell/page.rb, line 100
def host
  ''
end
status() click to toggle source
# File lib/grell/page.rb, line 84
def status
  nil
end
visited?() click to toggle source
# File lib/grell/page.rb, line 104
def visited?
  false
end