Class: Capybara::Lockstep::Client
- Inherits:
-
Object
- Object
- Capybara::Lockstep::Client
show all
- Includes:
- Logging, PageAccess
- Defined in:
- lib/capybara-lockstep/client.rb
Defined Under Namespace
Classes: Cuprite, Selenium
Constant Summary
collapse
- ERROR_SNIPPET_MISSING =
'Cannot synchronize: capybara-lockstep JavaScript snippet is missing'
- ERROR_PAGE_MISSING =
'Cannot synchronize with empty page'
- ERROR_ALERT_OPEN =
'Cannot synchronize while an alert is open'
- ERROR_WINDOW_CLOSED =
'Cannot synchronize with closed window'
- ERROR_NAVIGATED_AWAY =
"Browser navigated away while synchronizing"
- SYNCHRONIZED_IVAR =
:@lockstep_synchronized_client
Instance Method Summary
collapse
Methods included from PageAccess
#alert_present?, #page, #supported_driver?
Methods included from Logging
#log
Instance Method Details
#synchronize ⇒ Object
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# File 'lib/capybara-lockstep/client.rb', line 36
def synchronize
self.synchronized = false
if alert_present?
log ERROR_ALERT_OPEN
return
end
start_time = Util.current_seconds
with_synchronization_error_handling do
Util.with_max_wait_time(timeout) do
message_from_js = evaluate_async_script(<<~JS)
let done = arguments[0]
let synchronize = () => {
if (window.CapybaraLockstep) {
CapybaraLockstep.synchronize(done)
} else {
done(#{ERROR_SNIPPET_MISSING.to_json})
}
}
const emptyDataURL = /^data:[^,]*,?$/
if (emptyDataURL.test(location.href) || location.protocol === 'about:') {
done(#{ERROR_PAGE_MISSING.to_json})
} else if (document.readyState === 'complete') {
// WebDriver always waits for the `load` event after a visit(),
// unless a different page load strategy was configured.
synchronize()
} else {
window.addEventListener('load', synchronize)
}
JS
case message_from_js
when ERROR_PAGE_MISSING
log(message_from_js)
when ERROR_SNIPPET_MISSING
log(message_from_js)
else
log message_from_js
end_time = Util.current_seconds
ms_elapsed = ((end_time.to_f - start_time) * 1000).round
log "Synchronized client successfully [#{ms_elapsed} ms]"
self.synchronized = true
end
end
end
end
|
#synchronized=(value) ⇒ Object
32
33
34
|
# File 'lib/capybara-lockstep/client.rb', line 32
def synchronized=(value)
page.instance_variable_set(SYNCHRONIZED_IVAR, value)
end
|
#synchronized? ⇒ Boolean
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/capybara-lockstep/client.rb', line 15
def synchronized?
value = page.instance_variable_get(SYNCHRONIZED_IVAR)
value.nil? ? true : value
end
|