Class: Capybara::Webkit::Browser

Inherits:
Object
  • Object
show all
Defined in:
lib/capybara/webkit/browser.rb

Instance Method Summary collapse

Constructor Details

#initialize(connection) ⇒ Browser

Returns a new instance of Browser.



5
6
7
# File 'lib/capybara/webkit/browser.rb', line 5

def initialize(connection)
  @connection = connection
end

Instance Method Details

#accept_alert(options) ⇒ Object



189
190
191
# File 'lib/capybara/webkit/browser.rb', line 189

def accept_alert(options)
  command("AcceptAlert", options[:text])
end

#accept_confirm(options) ⇒ Object



145
146
147
# File 'lib/capybara/webkit/browser.rb', line 145

def accept_confirm(options)
  command("SetConfirmAction", "Yes", options[:text])
end

#accept_js_confirmsObject



149
150
151
# File 'lib/capybara/webkit/browser.rb', line 149

def accept_js_confirms
  command("SetConfirmAction", "Yes")
end

#accept_js_promptsObject



169
170
171
# File 'lib/capybara/webkit/browser.rb', line 169

def accept_js_prompts
  command("SetPromptAction", "Yes")
end

#accept_prompt(options) ⇒ Object



161
162
163
164
165
166
167
# File 'lib/capybara/webkit/browser.rb', line 161

def accept_prompt(options)
  if options[:with]
    command("SetPromptAction", "Yes", options[:text], options[:with])
  else
    command("SetPromptAction", "Yes", options[:text])
  end
end

#alert_messagesObject



61
62
63
# File 'lib/capybara/webkit/browser.rb', line 61

def alert_messages
  JSON.parse(command("JavascriptAlertMessages"))
end

#allow_url(url) ⇒ Object



268
269
270
# File 'lib/capybara/webkit/browser.rb', line 268

def allow_url(url)
  command("AllowUrl", url)
end

#authenticate(username, password) ⇒ Object



9
10
11
# File 'lib/capybara/webkit/browser.rb', line 9

def authenticate(username, password)
  command("Authenticate", username, password)
end

#block_unknown_urlsObject



276
277
278
# File 'lib/capybara/webkit/browser.rb', line 276

def block_unknown_urls
  command("SetUnknownUrlMode", "block")
end

#block_url(url) ⇒ Object



272
273
274
# File 'lib/capybara/webkit/browser.rb', line 272

def block_url(url)
  command("BlockUrl", url)
end

#bodyObject



41
42
43
# File 'lib/capybara/webkit/browser.rb', line 41

def body
  command("Body")
end

#clear_cookiesObject



239
240
241
# File 'lib/capybara/webkit/browser.rb', line 239

def clear_cookies
  command "ClearCookies"
end

#clear_prompt_textObject



185
186
187
# File 'lib/capybara/webkit/browser.rb', line 185

def clear_prompt_text
  command("ClearPromptText")
end

#clear_proxyObject



252
253
254
# File 'lib/capybara/webkit/browser.rb', line 252

def clear_proxy
  command("SetProxy")
end

#command(name, *args) ⇒ Object



203
204
205
206
207
208
209
210
211
212
# File 'lib/capybara/webkit/browser.rb', line 203

def command(name, *args)
  @connection.puts name
  @connection.puts args.size
  args.each do |arg|
    @connection.puts arg.to_s.bytesize
    @connection.print arg.to_s
  end
  check
  read_response
end

#confirm_messagesObject



65
66
67
# File 'lib/capybara/webkit/browser.rb', line 65

def confirm_messages
  JSON.parse(command("JavascriptConfirmMessages"))
end

#console_messagesObject



49
50
51
52
53
# File 'lib/capybara/webkit/browser.rb', line 49

def console_messages
  JSON.parse(command("ConsoleMessages")).map do |message|
    message.inject({}) { |m,(k,v)| m.merge(k.to_sym => v) }
  end
end

#current_urlObject



77
78
79
# File 'lib/capybara/webkit/browser.rb', line 77

def current_url
  command("CurrentUrl")
end

#enable_loggingObject



13
14
15
# File 'lib/capybara/webkit/browser.rb', line 13

def enable_logging
  command "EnableLogging"
end

#error_messagesObject



55
56
57
58
59
# File 'lib/capybara/webkit/browser.rb', line 55

def error_messages
  console_messages.select do |message|
    message[:message] =~ /Error:/
  end
end

#evaluate_script(script) ⇒ Object



214
215
216
217
# File 'lib/capybara/webkit/browser.rb', line 214

def evaluate_script(script)
  json = command('Evaluate', script)
  JSON.parse("[#{json}]").first
end

#execute_script(script) ⇒ Object



219
220
221
# File 'lib/capybara/webkit/browser.rb', line 219

def execute_script(script)
  command('Execute', script)
end

#find_css(query) ⇒ Object



33
34
35
# File 'lib/capybara/webkit/browser.rb', line 33

def find_css(query)
  command("FindCss", query).split(",")
end

#find_modal(id) ⇒ Object



193
194
195
# File 'lib/capybara/webkit/browser.rb', line 193

def find_modal(id)
  command("FindModal", id)
end

#find_xpath(query) ⇒ Object



29
30
31
# File 'lib/capybara/webkit/browser.rb', line 29

def find_xpath(query)
  command("FindXpath", query).split(",")
end

#frame_focus(selector = nil) ⇒ Object



81
82
83
84
85
86
87
88
89
90
91
# File 'lib/capybara/webkit/browser.rb', line 81

def frame_focus(selector=nil)
  if selector.respond_to?(:base)
    selector.base.invoke('focus')
  elsif selector.is_a? Fixnum
    command("FrameFocus", "", selector.to_s)
  elsif selector
    command("FrameFocus", selector)
  else
    command("FrameFocus")
  end
end

#get_cookiesObject



243
244
245
# File 'lib/capybara/webkit/browser.rb', line 243

def get_cookies
  command("GetCookies").lines.map{ |line| line.strip }.select{ |line| !line.empty? }
end

#get_window_handleObject



135
136
137
# File 'lib/capybara/webkit/browser.rb', line 135

def get_window_handle
  command('GetWindowHandle')
end

#get_window_handlesObject



125
126
127
# File 'lib/capybara/webkit/browser.rb', line 125

def get_window_handles
  JSON.parse(command('GetWindowHandles'))
end

#go_backObject



260
261
262
# File 'lib/capybara/webkit/browser.rb', line 260

def go_back
  command("GoBack")
end

#go_forwardObject



264
265
266
# File 'lib/capybara/webkit/browser.rb', line 264

def go_forward
  command("GoForward")
end

#header(key, value) ⇒ Object



21
22
23
# File 'lib/capybara/webkit/browser.rb', line 21

def header(key, value)
  command("Header", key, value)
end

#ignore_ssl_errorsObject



93
94
95
# File 'lib/capybara/webkit/browser.rb', line 93

def ignore_ssl_errors
  command("IgnoreSslErrors")
end

#prompt_messagesObject



69
70
71
# File 'lib/capybara/webkit/browser.rb', line 69

def prompt_messages
  JSON.parse(command("JavascriptPromptMessages"))
end

#reject_confirm(options) ⇒ Object



153
154
155
# File 'lib/capybara/webkit/browser.rb', line 153

def reject_confirm(options)
  command("SetConfirmAction", "No", options[:text])
end

#reject_js_confirmsObject



157
158
159
# File 'lib/capybara/webkit/browser.rb', line 157

def reject_js_confirms
  command("SetConfirmAction", "No")
end

#reject_js_promptsObject



177
178
179
# File 'lib/capybara/webkit/browser.rb', line 177

def reject_js_prompts
  command("SetPromptAction", "No")
end

#reject_prompt(options) ⇒ Object



173
174
175
# File 'lib/capybara/webkit/browser.rb', line 173

def reject_prompt(options)
  command("SetPromptAction", "No", options[:text])
end

#render(path, width, height) ⇒ Object



223
224
225
# File 'lib/capybara/webkit/browser.rb', line 223

def render(path, width, height)
  command "Render", path, width, height
end

#reset!Object



37
38
39
# File 'lib/capybara/webkit/browser.rb', line 37

def reset!
  command("Reset")
end

#response_headersObject



73
74
75
# File 'lib/capybara/webkit/browser.rb', line 73

def response_headers
  Hash[command("Headers").split("\n").map { |header| header.split(": ") }]
end


235
236
237
# File 'lib/capybara/webkit/browser.rb', line 235

def set_cookie(cookie)
  command "SetCookie", cookie
end

#set_prompt_text_to(string) ⇒ Object



181
182
183
# File 'lib/capybara/webkit/browser.rb', line 181

def set_prompt_text_to(string)
  command("SetPromptText", string)
end

#set_proxy(options = {}) ⇒ Object



247
248
249
250
# File 'lib/capybara/webkit/browser.rb', line 247

def set_proxy(options = {})
  options = default_proxy_options.merge(options)
  command("SetProxy", options[:host], options[:port], options[:user], options[:pass])
end

#set_skip_image_loading(skip_image_loading) ⇒ Object



97
98
99
# File 'lib/capybara/webkit/browser.rb', line 97

def set_skip_image_loading(skip_image_loading)
  command("SetSkipImageLoading", skip_image_loading)
end

#status_codeObject



45
46
47
# File 'lib/capybara/webkit/browser.rb', line 45

def status_code
  command("Status").to_i
end

#timeoutObject



231
232
233
# File 'lib/capybara/webkit/browser.rb', line 231

def timeout
  command("GetTimeout").to_i
end

#timeout=(timeout_in_seconds) ⇒ Object



227
228
229
# File 'lib/capybara/webkit/browser.rb', line 227

def timeout=(timeout_in_seconds)
  command "SetTimeout", timeout_in_seconds
end

#titleObject



25
26
27
# File 'lib/capybara/webkit/browser.rb', line 25

def title
  command("Title")
end

#url_blacklist=(black_list) ⇒ Object



197
198
199
200
201
# File 'lib/capybara/webkit/browser.rb', line 197

def url_blacklist=(black_list)
  warn '[DEPRECATION] Capybara::Webkit::Browser#url_blacklist= ' \
    'is deprecated. Please use page.driver.block_url instead.'
  command("SetUrlBlacklist", *Array(black_list))
end

#versionObject



256
257
258
# File 'lib/capybara/webkit/browser.rb', line 256

def version
  command("Version")
end

#visit(url) ⇒ Object



17
18
19
# File 'lib/capybara/webkit/browser.rb', line 17

def visit(url)
  command "Visit", url
end

#window_close(selector) ⇒ Object



109
110
111
# File 'lib/capybara/webkit/browser.rb', line 109

def window_close(selector)
  command("WindowClose", selector)
end

#window_focus(selector) ⇒ Object



101
102
103
# File 'lib/capybara/webkit/browser.rb', line 101

def window_focus(selector)
  command("WindowFocus", selector)
end

#window_handleObject



139
140
141
142
143
# File 'lib/capybara/webkit/browser.rb', line 139

def window_handle
  warn '[DEPRECATION] Capybara::Webkit::Browser#window_handle ' \
    'is deprecated. Please use Capybara::Session#current_window instead.'
  get_window_handle
end

#window_handlesObject



129
130
131
132
133
# File 'lib/capybara/webkit/browser.rb', line 129

def window_handles
  warn '[DEPRECATION] Capybara::Webkit::Browser#window_handles ' \
    'is deprecated. Please use Capybara::Session#windows instead.'
  get_window_handles
end

#window_maximize(handle) ⇒ Object



121
122
123
# File 'lib/capybara/webkit/browser.rb', line 121

def window_maximize(handle)
  command("WindowMaximize", handle)
end

#window_openObject



105
106
107
# File 'lib/capybara/webkit/browser.rb', line 105

def window_open
  command("WindowOpen")
end

#window_resize(handle, width, height) ⇒ Object



113
114
115
# File 'lib/capybara/webkit/browser.rb', line 113

def window_resize(handle, width, height)
  command("WindowResize", handle, width.to_i, height.to_i)
end

#window_size(handle) ⇒ Object



117
118
119
# File 'lib/capybara/webkit/browser.rb', line 117

def window_size(handle)
  JSON.parse(command("WindowSize", handle))
end