Class: Watir::Browser

Inherits:
Object
  • Object
show all
Includes:
AlertHelper, Container, HasWindow, Waitable
Defined in:
lib/watir-webdriver/browser.rb,
lib/watir-webdriver/extensions/alerts.rb,
lib/watir-webdriver/extensions/nokogiri.rb

Overview

The main class through which you control the browser.

Constant Summary

Constants included from Atoms

Atoms::ATOMS

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from AlertHelper

#confirm, #prompt

Methods included from Waitable

#wait_until, #wait_while

Methods included from HasWindow

#window, #windows

Methods included from Container

#a, #abbr, #abbrs, #address, #addresses, #animate, #animate_motion, #animate_motions, #animate_transform, #animate_transforms, #animates, #area, #areas, #article, #articles, #as, #aside, #asides, #audio, #audios, #b, #base, #bases, #bdi, #bdis, #bdo, #bdos, #blockquote, #blockquotes, #body, #bodys, #br, #brs, #bs, #button, #buttons, #canvas, #canvases, #caption, #captions, #checkbox, #checkboxes, #circle, #circles, #cite, #cites, #code, #codes, #col, #colgroup, #colgroups, #cols, #cursor, #cursors, #data, #datalist, #datalists, #datas, #dd, #dds, #defs, #defss, #del, #dels, #desc, #descs, #details, #detailses, #dfn, #dfns, #dialog, #dialogs, #discard, #discards, #div, #divs, #dl, #dls, #dt, #dts, #element, #elements, #ellipse, #ellipses, #em, #embed, #embeds, #ems, #extract_selector, #field_set, #field_sets, #fieldset, #fieldsets, #figcaption, #figcaptions, #figure, #figures, #file_field, #file_fields, #font, #fonts, #footer, #footers, #foreign_object, #foreign_objects, #form, #forms, #frame, #frames, #frameset, #framesets, #g, #gs, #h1, #h1s, #h2, #h2s, #h3, #h3s, #h4, #h4s, #h5, #h5s, #h6, #h6s, #head, #header, #headers, #heads, #hgroup, #hgroups, #hidden, #hiddens, #hr, #hrs, #htmls, #i, #iframe, #iframes, #image, #images, #img, #imgs, #input, #inputs, #ins, #inses, #is, #kbd, #kbds, #keygen, #keygens, #label, #labels, #legend, #legends, #li, #line, #linear_gradient, #linear_gradients, #lines, #link, #links, #lis, #main, #mains, #map, #maps, #mark, #marker, #markers, #marks, #menu, #menuitem, #menuitems, #menus, #mesh_gradient, #mesh_gradients, #mesh_patch, #mesh_patches, #mesh_row, #mesh_rows, #meta, #metadata, #metadatas, #metas, #meter, #meters, #mpath, #mpaths, #nav, #navs, #noscript, #noscripts, #object, #objects, #ol, #ols, #optgroup, #optgroups, #option, #options, #output, #outputs, #p, #param, #params, #path, #paths, #pattern, #patterns, #polygon, #polygons, #polyline, #polylines, #pre, #pres, #progress, #progresses, #ps, #q, #qs, #radial_gradient, #radial_gradients, #radio, #radios, #rect, #rects, #rp, #rps, #rt, #rts, #rubies, #ruby, #s, #samp, #samps, #script, #scripts, #section, #sections, #select, #select_list, #select_lists, #selects, #set, #sets, #small, #smalls, #source, #sources, #span, #spans, #ss, #stop, #stops, #strong, #strongs, #style, #styles, #sub, #subs, #summaries, #summary, #sup, #sups, #svg, #svgs, #switch, #switches, #symbol, #symbols, #table, #tables, #tbody, #tbodys, #td, #tds, #template, #templates, #text_field, #text_fields, #text_path, #text_paths, #textarea, #textareas, #tfoot, #tfoots, #th, #thead, #theads, #ths, #time, #times, #titles, #tr, #track, #tracks, #trs, #tspan, #tspans, #u, #ul, #uls, #us, #use, #uses, #var, #vars, #video, #videos, #view, #views, #wbr, #wbrs

Methods included from Atoms

load

Methods included from XpathSupport

downcase, escape

Constructor Details

#initialize(browser = :firefox, *args) ⇒ Browser

Creates a Watir::Browser instance.

Parameters:

  • browser (Symbol, Selenium::WebDriver) (defaults to: :firefox)

    :firefox, :ie, :chrome, :remote or Selenium::WebDriver instance

  • args

    Passed to the underlying driver



43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/watir-webdriver/browser.rb', line 43

def initialize(browser = :firefox, *args)
  case browser
  when ::Symbol, String
    @driver = Selenium::WebDriver.for browser.to_sym, *args
  when Selenium::WebDriver::Driver
    @driver = browser
  else
    raise ArgumentError, "expected Symbol or Selenium::WebDriver::Driver, got #{browser.class}"
  end

  @after_hooks = AfterHooks.new(self)
  @current_frame  = nil
  @closed = false
end

Instance Attribute Details

#after_hooksObject (readonly)

Returns the value of attribute after_hooks.



13
14
15
# File 'lib/watir-webdriver/browser.rb', line 13

def after_hooks
  @after_hooks
end

#driverObject (readonly) Also known as: wd

Returns the value of attribute driver.



12
13
14
# File 'lib/watir-webdriver/browser.rb', line 12

def driver
  @driver
end

Class Method Details

.start(url, browser = :firefox, *args) ⇒ Watir::Browser

Creates a Watir::Browser instance and goes to URL.

Examples:

browser = Watir::Browser.start "www.google.com", :phantomjs
#=> #<Watir::Browser:0x..fa45a499cb41e1752 url="http://www.google.com" title="Google">

Parameters:

  • url (String)
  • browser (Symbol, Selenium::WebDriver) (defaults to: :firefox)

    :firefox, :ie, :chrome, :remote or Selenium::WebDriver instance

Returns:



28
29
30
31
32
33
# File 'lib/watir-webdriver/browser.rb', line 28

def start(url, browser = :firefox, *args)
  b = new(browser, *args)
  b.goto url

  b
end

Instance Method Details

#add_checker(checker = nil, &block) ⇒ Object

Deprecated.

Use ‘Watir::AfterHooks#add` instead



288
289
290
291
# File 'lib/watir-webdriver/browser.rb', line 288

def add_checker(checker = nil, &block)
  warn 'Browser#add_checker is deprecated. Use Browser#after_hooks#add instead.'
  @after_hooks.add(checker, &block)
end

#alertWatir::Alert

Handles JavaScript alerts, confirms and prompts.

Returns:



193
194
195
# File 'lib/watir-webdriver/browser.rb', line 193

def alert
  Alert.new(self)
end

#assert_existsObject Also known as: ensure_not_stale

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Protocol shared with Watir::Element



340
341
342
343
344
345
346
347
348
349
# File 'lib/watir-webdriver/browser.rb', line 340

def assert_exists
  if @closed
    raise Exception::Error, "browser was closed"
  elsif !window.present?
    raise Exception::NoMatchingWindowFoundException, "browser window was closed"
  else
    driver.switch_to.default_content
    true
  end
end

#backObject

Navigates back in history.



87
88
89
# File 'lib/watir-webdriver/browser.rb', line 87

def back
  @driver.navigate.back
end

#browserObject



356
357
358
# File 'lib/watir-webdriver/browser.rb', line 356

def browser
  self
end

#closeObject Also known as: quit

Closes browser.



134
135
136
137
138
# File 'lib/watir-webdriver/browser.rb', line 134

def close
  return if @closed
  @driver.quit
  @closed = true
end

#cookiesWatir::Cookies

Handles cookies.

Returns:



147
148
149
# File 'lib/watir-webdriver/browser.rb', line 147

def cookies
  @cookies ||= Cookies.new driver.manage
end

#disable_checker(checker) ⇒ Object

Deprecated.

Use ‘Watir::AfterHooks#delete` instead



297
298
299
300
# File 'lib/watir-webdriver/browser.rb', line 297

def disable_checker(checker)
  warn 'Browser#disable_checker is deprecated. Use Browser#after_hooks#delete instead.'
  @after_hooks.delete(checker)
end

#execute_script(script, *args) ⇒ Object

Executes JavaScript snippet.

If you are going to use the value snippet returns, make sure to use ‘return` explicitly.

Examples:

Check that Ajax requests are completed with jQuery

browser.execute_script("return jQuery.active") == 0
#=> true

Parameters:

  • script (String)

    JavaScript snippet to execute

  • *args

    Arguments will be available in the given script in the ‘arguments’ pseudo-array



253
254
255
256
257
258
# File 'lib/watir-webdriver/browser.rb', line 253

def execute_script(script, *args)
  args.map! { |e| e.kind_of?(Watir::Element) ? e.wd : e }
  returned = @driver.execute_script(script, *args)

  wrap_elements_in(returned)
end

#exist?Boolean Also known as: exists?

Returns true if browser is not closed and false otherwise.

Returns:

  • (Boolean)


326
327
328
329
330
331
# File 'lib/watir-webdriver/browser.rb', line 326

def exist?
  assert_exists
  true
rescue Exception::NoMatchingWindowFoundException, Exception::Error
  false
end

#forwardObject

Navigates forward in history.



95
96
97
# File 'lib/watir-webdriver/browser.rb', line 95

def forward
  @driver.navigate.forward
end

#goto(uri) ⇒ String

Goes to the given URL.

Examples:

browser.goto "watir.github.io"

Parameters:

  • uri (String)

    The url.

Returns:

  • (String)

    The url you end up at.



74
75
76
77
78
79
80
81
# File 'lib/watir-webdriver/browser.rb', line 74

def goto(uri)
  uri = "http://#{uri}" unless uri =~ URI.regexp

  @driver.navigate.to uri
  @after_hooks.run

  uri
end

#htmlString

Returns HTML code of current page.

Returns:

  • (String)


182
183
184
185
# File 'lib/watir-webdriver/browser.rb', line 182

def html
  # use body.html instead?
  @driver.page_source
end

#inspectObject



58
59
60
61
62
# File 'lib/watir-webdriver/browser.rb', line 58

def inspect
  '#<%s:0x%x url=%s title=%s>' % [self.class, hash*2, url.inspect, title.inspect]
rescue
  '#<%s:0x%x closed=%s>' % [self.class, hash*2, @closed.to_s]
end

#nameSymbol

Returns browser name.

Examples:

browser = Watir::Browser.new :phantomjs
browser.name
#=> :phantomjs

Returns:



162
163
164
# File 'lib/watir-webdriver/browser.rb', line 162

def name
  @driver.browser
end

#ready_stateString

Returns readyState of document.

Returns:

  • (String)


225
226
227
# File 'lib/watir-webdriver/browser.rb', line 225

def ready_state
  execute_script 'return document.readyState'
end

#refreshObject

Refreshes current page.



201
202
203
204
# File 'lib/watir-webdriver/browser.rb', line 201

def refresh
  @driver.navigate.refresh
  @after_hooks.run
end

#reset!Object



352
353
354
# File 'lib/watir-webdriver/browser.rb', line 352

def reset!
  # no-op
end

#run_checkersObject

Deprecated.

Use ‘Watir::AfterHooks#run` instead



306
307
308
309
# File 'lib/watir-webdriver/browser.rb', line 306

def run_checkers
  warn 'Browser#run_checkers is deprecated. Use Browser#after_hooks#run instead.'
  @after_hooks.run
end

#screenshotWatir::Screenshot

Handles screenshots of current pages.

Returns:



280
281
282
# File 'lib/watir-webdriver/browser.rb', line 280

def screenshot
  Screenshot.new driver
end

#send_keys(*args) ⇒ Object

Sends sequence of keystrokes to currently active element.

Examples:

browser.goto "www.google.com"
browser.send_keys "Watir", :return

Parameters:



270
271
272
# File 'lib/watir-webdriver/browser.rb', line 270

def send_keys(*args)
  @driver.switch_to.active_element.send_keys(*args)
end

#statusString

Returns the text of status bar.

Returns:

  • (String)


235
236
237
# File 'lib/watir-webdriver/browser.rb', line 235

def status
  execute_script "return window.status;"
end

#textString

Returns text of page body.

Returns:

  • (String)


172
173
174
# File 'lib/watir-webdriver/browser.rb', line 172

def text
  body.text
end

#titleString

Returns title of current page.

Examples:

browser.goto "watir.github.io"
browser.title
#=> "Watir is... – Watir Project – Watir stands for Web Application Testing In Ruby. It facilitates the writing of automated tests by mimicking the behavior of a user interacting with a website."

Returns:

  • (String)


126
127
128
# File 'lib/watir-webdriver/browser.rb', line 126

def title
  @driver.title
end

#urlString

Returns URL of current page.

Examples:

browser.goto "watir.github.io"
browser.url
#=> "http://watir.github.io/"

Returns:

  • (String)


110
111
112
113
# File 'lib/watir-webdriver/browser.rb', line 110

def url
  assert_exists
  @driver.current_url
end

#wait(timeout = 5) ⇒ Object

Waits until readyState of document is complete.

Parameters:

  • timeout (Fixnum) (defaults to: 5)

Raises:



213
214
215
216
217
# File 'lib/watir-webdriver/browser.rb', line 213

def wait(timeout = 5)
  wait_until(timeout, "waiting for document.readyState == 'complete'") do
    ready_state == "complete"
  end
end

#without_checkers(&block) ⇒ Object

Deprecated.

Use ‘Watir::AfterHooks#without` instead



315
316
317
318
# File 'lib/watir-webdriver/browser.rb', line 315

def without_checkers(&block)
  warn 'Browser#without_checkers is deprecated. Use Browser#after_hooks#without instead.'
  @after_hooks.without(&block)
end