|
1 | 1 | module Appium
|
2 | 2 | module Core
|
3 |
| - module SearchContext |
4 |
| - # referenced: ::Selenium::WebDriver::SearchContext |
| 3 | + class Base |
| 4 | + module SearchContext |
| 5 | + # referenced: ::Selenium::WebDriver::SearchContext |
5 | 6 |
|
6 |
| - FINDERS = ::Selenium::WebDriver::SearchContext::FINDERS.merge(accessibility_id: 'accessibility id') |
| 7 | + FINDERS = ::Selenium::WebDriver::SearchContext::FINDERS.merge(accessibility_id: 'accessibility id') |
7 | 8 |
|
8 |
| - def self.add_finders(finders) |
9 |
| - FINDERS.merge!(finders) |
10 |
| - end |
| 9 | + def self.add_finders(finders) |
| 10 | + FINDERS.merge!(finders) |
| 11 | + end |
11 | 12 |
|
12 |
| - # |
13 |
| - # Find the first element matching the given arguments |
14 |
| - # |
15 |
| - # @overload find_element(how, what) |
16 |
| - # @param [Symbol, String] how The method to find the element by |
17 |
| - # @param [String] what The locator to use |
18 |
| - # @overload find_element(opts) |
19 |
| - # @param [Hash] opts Find options |
20 |
| - # @option opts [Symbol] :how Key named after the method to find the element by, containing the locator |
21 |
| - # @return [Element] |
22 |
| - # |
23 |
| - # @raise [Error::NoSuchElementError] if the element doesn't exist |
24 |
| - # |
25 |
| - # @example Find element with accessibility id |
26 |
| - # find_elements :accessibility_id, 'Animation' |
27 |
| - # find_elements :accessibility_id, 'Animation' |
28 |
| - # |
29 |
| - def find_element(*args) |
30 |
| - how, what = extract_args(args) |
31 |
| - by = _set_by_from_finders(how) |
32 |
| - begin |
33 |
| - bridge.find_element_by by, what.to_s, ref |
34 |
| - rescue Selenium::WebDriver::Error::TimeOutError |
35 |
| - raise Selenium::WebDriver::Error::NoSuchElementError |
| 13 | + # |
| 14 | + # Find the first element matching the given arguments |
| 15 | + # |
| 16 | + # @overload find_element(how, what) |
| 17 | + # @param [Symbol, String] how The method to find the element by |
| 18 | + # @param [String] what The locator to use |
| 19 | + # @overload find_element(opts) |
| 20 | + # @param [Hash] opts Find options |
| 21 | + # @option opts [Symbol] :how Key named after the method to find the element by, containing the locator |
| 22 | + # @return [Element] |
| 23 | + # |
| 24 | + # @raise [Error::NoSuchElementError] if the element doesn't exist |
| 25 | + # |
| 26 | + # @example Find element with accessibility id |
| 27 | + # find_elements :accessibility_id, 'Animation' |
| 28 | + # find_elements :accessibility_id, 'Animation' |
| 29 | + # |
| 30 | + def find_element(*args) |
| 31 | + how, what = extract_args(args) |
| 32 | + by = _set_by_from_finders(how) |
| 33 | + begin |
| 34 | + bridge.find_element_by by, what.to_s, ref |
| 35 | + rescue Selenium::WebDriver::Error::TimeOutError |
| 36 | + raise Selenium::WebDriver::Error::NoSuchElementError |
| 37 | + end |
36 | 38 | end
|
37 |
| - end |
38 | 39 |
|
39 |
| - # |
40 |
| - # Find all elements matching the given arguments |
41 |
| - # |
42 |
| - # @see SearchContext#find_element |
43 |
| - # |
44 |
| - def find_elements(*args) |
45 |
| - how, what = extract_args(args) |
46 |
| - by = _set_by_from_finders(how) |
47 |
| - begin |
48 |
| - bridge.find_elements_by by, what.to_s, ref |
49 |
| - rescue Selenium::WebDriver::Error::TimeOutError |
50 |
| - raise Selenium::WebDriver::Error::NoSuchElementError |
| 40 | + # |
| 41 | + # Find all elements matching the given arguments |
| 42 | + # |
| 43 | + # @see SearchContext#find_element |
| 44 | + # |
| 45 | + def find_elements(*args) |
| 46 | + how, what = extract_args(args) |
| 47 | + by = _set_by_from_finders(how) |
| 48 | + begin |
| 49 | + bridge.find_elements_by by, what.to_s, ref |
| 50 | + rescue Selenium::WebDriver::Error::TimeOutError |
| 51 | + raise Selenium::WebDriver::Error::NoSuchElementError |
| 52 | + end |
51 | 53 | end
|
52 |
| - end |
53 | 54 |
|
54 |
| - private |
| 55 | + private |
55 | 56 |
|
56 |
| - def _set_by_from_finders(how) |
57 |
| - finders = FINDERS |
58 |
| - by = finders[how.to_sym] |
59 |
| - raise ArgumentError, "cannot find element by #{how.inspect}" unless by |
60 |
| - by |
61 |
| - end |
| 57 | + def _set_by_from_finders(how) |
| 58 | + finders = FINDERS |
| 59 | + by = finders[how.to_sym] |
| 60 | + raise ArgumentError, "cannot find element by #{how.inspect}" unless by |
| 61 | + by |
| 62 | + end |
62 | 63 |
|
63 |
| - def extract_args(args) |
64 |
| - case args.size |
65 |
| - when 2 |
66 |
| - args |
67 |
| - when 1 |
68 |
| - arg = args.first |
| 64 | + def extract_args(args) |
| 65 | + case args.size |
| 66 | + when 2 |
| 67 | + args |
| 68 | + when 1 |
| 69 | + arg = args.first |
69 | 70 |
|
70 |
| - unless arg.respond_to?(:shift) |
71 |
| - raise ArgumentError, "expected #{arg.inspect}:#{arg.class} to respond to #shift" |
72 |
| - end |
| 71 | + unless arg.respond_to?(:shift) |
| 72 | + raise ArgumentError, "expected #{arg.inspect}:#{arg.class} to respond to #shift" |
| 73 | + end |
73 | 74 |
|
74 |
| - # this will be a single-entry hash, so use #shift over #first or #[] |
75 |
| - arr = arg.dup.shift |
76 |
| - unless arr.size == 2 |
77 |
| - raise ArgumentError, "expected #{arr.inspect} to have 2 elements" |
78 |
| - end |
| 75 | + # this will be a single-entry hash, so use #shift over #first or #[] |
| 76 | + arr = arg.dup.shift |
| 77 | + unless arr.size == 2 |
| 78 | + raise ArgumentError, "expected #{arr.inspect} to have 2 elements" |
| 79 | + end |
79 | 80 |
|
80 |
| - arr |
81 |
| - else |
82 |
| - raise ArgumentError, "wrong number of arguments (#{args.size} for 2)" |
| 81 | + arr |
| 82 | + else |
| 83 | + raise ArgumentError, "wrong number of arguments (#{args.size} for 2)" |
| 84 | + end |
83 | 85 | end
|
84 |
| - end |
85 |
| - end |
86 |
| - end |
87 |
| -end |
| 86 | + end # module SearchContext |
| 87 | + end # class Base |
| 88 | + end # module Core |
| 89 | +end # module Appium |
0 commit comments