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
- (Object) body
18
19
20
|
# File 'lib/capybara/driver/base.rb', line 18
def body
raise NotImplementedError
end
|
- (Object) current_url
2
3
4
|
# File 'lib/capybara/driver/base.rb', line 2
def current_url
raise NotImplementedError
end
|
- (Object) evaluate_script(script)
26
27
28
|
# File 'lib/capybara/driver/base.rb', line 26
def evaluate_script(script)
raise Capybara::NotSupportedByDriverError
end
|
- (Object) execute_script(script)
22
23
24
|
# File 'lib/capybara/driver/base.rb', line 22
def execute_script(script)
raise Capybara::NotSupportedByDriverError
end
|
- (Object) find(query)
10
11
12
|
# File 'lib/capybara/driver/base.rb', line 10
def find(query)
raise NotImplementedError
end
|
- (Object) invalid_element_errors
46
47
48
|
# File 'lib/capybara/driver/base.rb', line 46
def invalid_element_errors
[]
end
|
- (Object) reset!
54
55
|
# File 'lib/capybara/driver/base.rb', line 54
def reset!
end
|
30
31
32
|
# File 'lib/capybara/driver/base.rb', line 30
def
raise Capybara::NotSupportedByDriverError
end
|
- (Object) source
14
15
16
|
# File 'lib/capybara/driver/base.rb', line 14
def source
raise NotImplementedError
end
|
- (Object) status_code
34
35
36
|
# File 'lib/capybara/driver/base.rb', line 34
def status_code
raise Capybara::NotSupportedByDriverError
end
|
- (Object) visit(path)
6
7
8
|
# File 'lib/capybara/driver/base.rb', line 6
def visit(path)
raise NotImplementedError
end
|
- (Boolean) wait?
50
51
52
|
# File 'lib/capybara/driver/base.rb', line 50
def wait?
false
end
|
- (Object) within_frame(frame_id)
38
39
40
|
# File 'lib/capybara/driver/base.rb', line 38
def within_frame(frame_id)
raise Capybara::NotSupportedByDriverError
end
|
- (Object) within_window(handle)
42
43
44
|
# File 'lib/capybara/driver/base.rb', line 42
def within_window(handle)
raise Capybara::NotSupportedByDriverError
end
|