Class: Watir::Element

Inherits:
Object show all
Extended by:
AttributeHelper
Includes:
Selenium, Container, EventuallyPresent, Exception
Defined in:
lib/watir-webdriver/elements/element.rb,
lib/watir-webdriver/extensions/select_text.rb

Overview

Base class for HTML elements.

Direct Known Subclasses

HTMLElement

Constant Summary

Constants included from AttributeHelper

AttributeHelper::IGNORED_ATTRIBUTES

Constants included from Atoms

Atoms::ATOMS

Instance Method Summary collapse

Methods included from AttributeHelper

attribute_list, attributes, typed_attributes

Methods included from EventuallyPresent

#wait_until_present, #wait_while_present, #when_present

Methods included from Container

#a, #abbr, #abbrs, #address, #addresses, #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, #cite, #cites, #code, #codes, #col, #colgroup, #colgroups, #cols, #command, #commands, #datalist, #datalists, #dd, #dds, #del, #dels, #details, #dfn, #dfns, #div, #divs, #dl, #dls, #dt, #dts, #element, #elements, #em, #embed, #embeds, #ems, #extract_selector, #fieldset, #fieldsets, #figcaption, #figcaptions, #figure, #figures, #file_field, #file_fields, #font, #fonts, #footer, #footers, #form, #forms, #frame, #frames, #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, #link, #links, #lis, #map, #maps, #mark, #marks, #menu, #menus, #meta, #metas, #meter, #meters, #nav, #navs, #noscript, #noscripts, #object, #objects, #ol, #ols, #optgroup, #optgroups, #option, #options, #output, #outputs, #p, #param, #params, #pre, #pres, #progress, #progresses, #ps, #q, #qs, #radio, #radios, #rp, #rps, #rt, #rts, #rubies, #ruby, #s, #samp, #samps, #script, #scripts, #section, #sections, #select, #select_list, #select_lists, #selects, #small, #smalls, #source, #sources, #span, #spans, #ss, #strong, #strongs, #styles, #sub, #subs, #summaries, #summary, #sup, #sups, #table, #tables, #tbody, #tbodys, #td, #tds, #text_field, #text_fields, #textarea, #textareas, #tfoot, #tfoots, #th, #thead, #theads, #ths, #time, #times, #title, #titles, #tr, #track, #tracks, #trs, #u, #ul, #uls, #us, #var, #vars, #video, #videos, #wbr, #wbrs

Methods included from Atoms

load

Methods included from XpathSupport

#element_by_xpath, #elements_by_xpath, escape

Constructor Details

#initialize(parent, selector) ⇒ Element

Returns a new instance of Element.



17
18
19
20
21
22
23
24
# File 'lib/watir-webdriver/elements/element.rb', line 17

def initialize(parent, selector)
  @parent   = parent
  @selector = selector

  unless @selector.kind_of? Hash
    raise ArgumentError, "invalid argument: #{selector.inspect}"
  end
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, *args, &blk) ⇒ Object (private)



290
291
292
293
294
295
296
297
# File 'lib/watir-webdriver/elements/element.rb', line 290

def method_missing(meth, *args, &blk)
  method = meth.to_s
  if method =~ /^data_(.+)$/
    attribute_value(method.gsub(/_/, '-'), *args)
  else
    super
  end
end

Instance Method Details

#==(other) ⇒ Object Also known as: eql?



42
43
44
45
46
47
# File 'lib/watir-webdriver/elements/element.rb', line 42

def ==(other)
  return false unless other.kind_of? self.class

  assert_exists
  @element == other.wd
end

#attribute_value(attribute_name) ⇒ Object



112
113
114
115
# File 'lib/watir-webdriver/elements/element.rb', line 112

def attribute_value(attribute_name)
  assert_exists
  @element.attribute attribute_name
end

#clickObject



64
65
66
67
68
69
# File 'lib/watir-webdriver/elements/element.rb', line 64

def click
  assert_exists
  assert_enabled
  @element.click
  run_checkers
end

#double_clickObject



71
72
73
74
75
76
77
78
79
80
# File 'lib/watir-webdriver/elements/element.rb', line 71

def double_click
  assert_exists

  unless driver.kind_of? WebDriver::DriverExtensions::HasInputDevices
    raise NotImplementedError, "Element#double_click is not supported by this driver"
  end

  driver.action.double_click(@element).perform
  run_checkers
end

#driverObject

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.



159
160
161
# File 'lib/watir-webdriver/elements/element.rb', line 159

def driver
  @parent.driver
end

#exists?Boolean Also known as: exist?

Returns:

  • (Boolean)


26
27
28
29
30
31
# File 'lib/watir-webdriver/elements/element.rb', line 26

def exists?
  assert_exists
  true
rescue UnknownObjectException, UnknownFrameException
  false
end

#fire_event(event_name) ⇒ Object



138
139
140
141
142
143
# File 'lib/watir-webdriver/elements/element.rb', line 138

def fire_event(event_name)
  assert_exists
  event_name = event_name.to_s.sub(/^on/, '').downcase

  execute_atom :fireEvent, @element, event_name
end

#flashObject



93
94
95
96
97
98
99
100
# File 'lib/watir-webdriver/elements/element.rb', line 93

def flash
  original_color = style("backgroundColor")

  10.times do |n|
    color = (n % 2 == 0) ? "red" : original_color
    driver.execute_script("arguments[0].style.backgroundColor = '#{color}'", @element)
  end
end

#focusObject

Note: Firefox queues focus events until the window actually has focus.

See code.google.com/p/selenium/issues/detail?id=157



133
134
135
136
# File 'lib/watir-webdriver/elements/element.rb', line 133

def focus
  assert_exists
  driver.execute_script "return arguments[0].focus()", @element
end

#hashObject



50
51
52
# File 'lib/watir-webdriver/elements/element.rb', line 50

def hash
  @element ? @element.hash : super
end

#htmlObject



117
118
119
120
# File 'lib/watir-webdriver/elements/element.rb', line 117

def html
  assert_exists
  execute_atom(:getOuterHtml, @element).strip
end

#inspectObject



34
35
36
37
38
39
40
# File 'lib/watir-webdriver/elements/element.rb', line 34

def inspect
  if @selector.has_key?(:element)
    '#<%s:0x%x located=%s selector=%s>' % [self.class, hash*2, !!@element, '{:element=>(webdriver element)}']
  else
    '#<%s:0x%x located=%s selector=%s>' % [self.class, hash*2, !!@element, selector_string]
  end
end

#parentObject



145
146
147
148
149
150
151
152
153
# File 'lib/watir-webdriver/elements/element.rb', line 145

def parent
  assert_exists

  e = execute_atom :getParentElement, @element

  if e.kind_of?(WebDriver::Element)
    Watir.element_class_for(e.tag_name.downcase).new(@parent, :element => e)
  end
end

#present?Boolean

Returns true if the element exists and is visible on the page

Returns:

  • (Boolean)

See Also:



187
188
189
# File 'lib/watir-webdriver/elements/element.rb', line 187

def present?
  exists? && visible?
end

#right_clickObject



82
83
84
85
86
87
88
89
90
91
# File 'lib/watir-webdriver/elements/element.rb', line 82

def right_click
  assert_exists

  unless driver.kind_of? WebDriver::DriverExtensions::HasInputDevices
    raise NotImplementedError, "Element#context_click is not supported by this driver"
  end

  driver.action.context_click(@element).perform
  run_checkers
end

#run_checkersObject



200
201
202
# File 'lib/watir-webdriver/elements/element.rb', line 200

def run_checkers
  @parent.run_checkers
end

#select_text(str) ⇒ Object



5
6
7
8
# File 'lib/watir-webdriver/extensions/select_text.rb', line 5

def select_text(str)
  assert_exists
  execute_atom :selectText, @element, str
end

#send_keys(*args) ⇒ Object



122
123
124
125
# File 'lib/watir-webdriver/elements/element.rb', line 122

def send_keys(*args)
  assert_exists
  @element.send_keys(*args)
end

#style(property = nil) ⇒ Object



191
192
193
194
195
196
197
198
# File 'lib/watir-webdriver/elements/element.rb', line 191

def style(property = nil)
  if property
    assert_exists
    @element.style property
  else
    attribute_value("style").to_s.strip
  end
end

#tag_nameObject



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

def tag_name
  assert_exists
  @element.tag_name.downcase
end

#textObject



54
55
56
57
# File 'lib/watir-webdriver/elements/element.rb', line 54

def text
  assert_exists
  @element.text
end

#to_subtypeObject

Cast this Element instance to a more specific subtype.

Example:

browser.element(:xpath => "//input[@type='submit']").to_subtype #=> #<Watir::Button>


212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# File 'lib/watir-webdriver/elements/element.rb', line 212

def to_subtype
  elem = wd()
  tag_name = elem.tag_name.downcase

  klass = nil

  if tag_name == "input"
    klass = case elem.attribute(:type)
      when *Button::VALID_TYPES
        Button
      when 'checkbox'
        CheckBox
      when 'radio'
        Radio
      when 'file'
        FileField
      else
        TextField
      end
  else
    klass = Watir.element_class_for(tag_name)
  end

  klass.new(@parent, :element => elem)
end

#valueObject



102
103
104
105
106
107
108
109
110
# File 'lib/watir-webdriver/elements/element.rb', line 102

def value
  assert_exists

  begin
    @element.attribute('value') || ''
  rescue WebDriver::Error::InvalidElementStateError
    ""
  end
end

#visible?Boolean

Returns true if this element is visible on the page

Returns:

  • (Boolean)


176
177
178
179
# File 'lib/watir-webdriver/elements/element.rb', line 176

def visible?
  assert_exists
  @element.displayed?
end

#wdObject

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.



167
168
169
170
# File 'lib/watir-webdriver/elements/element.rb', line 167

def wd
  assert_exists
  @element
end