Class: Capybara::Driver::Base
- Inherits:
-
Object
- Object
- Capybara::Driver::Base
show all
- Defined in:
- lib/capybara/driver/base.rb
Instance Method Summary
collapse
Instance Method Details
#body ⇒ Object
29
30
31
|
# File 'lib/capybara/driver/base.rb', line 29
def body
raise NotImplementedError
end
|
#cleanup! ⇒ Object
41
42
|
# File 'lib/capybara/driver/base.rb', line 41
def cleanup!
end
|
#current_url ⇒ Object
2
3
4
|
# File 'lib/capybara/driver/base.rb', line 2
def current_url
raise NotImplementedError
end
|
#evaluate_script(script) ⇒ Object
#find(query) ⇒ Object
10
11
12
|
# File 'lib/capybara/driver/base.rb', line 10
def find(query)
raise NotImplementedError
end
|
#has_shortcircuit_timeout? ⇒ Boolean
44
45
46
|
# File 'lib/capybara/driver/base.rb', line 44
def has_shortcircuit_timeout?
false
end
|
#source ⇒ Object
37
38
39
|
# File 'lib/capybara/driver/base.rb', line 37
def source
raise NotImplementedError
end
|
#visit(path) ⇒ Object
6
7
8
|
# File 'lib/capybara/driver/base.rb', line 6
def visit(path)
raise NotImplementedError
end
|
#wait? ⇒ Boolean
18
19
20
|
# File 'lib/capybara/driver/base.rb', line 18
def wait?
false
end
|
#wait_until(*args) ⇒ Object
22
23
|
# File 'lib/capybara/driver/base.rb', line 22
def wait_until *args
end
|
#within_frame(frame_id) ⇒ Object