Skip to content

Commit 8471880

Browse files
authored
refactor: separate core android ios more (#670)
* update base directory
1 parent 2e09e83 commit 8471880

File tree

7 files changed

+90
-75
lines changed

7 files changed

+90
-75
lines changed

lib/appium_lib/core/common/base.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# The following files have selenium-webdriver related stuff.
12
require_relative 'base/base'
23
require_relative 'base/bridge'
34
require_relative 'base/capabilities'

lib/appium_lib/core/common/base/base.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require_relative '../rch_context'
1+
require_relative 'search_context'
22

33
module Appium
44
module Core
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module Appium
2+
module Core
3+
class Base
4+
module Commands
5+
OSS = ::Selenium::WebDriver::Remote::OSS::Bridge::COMMANDS.freeze
6+
W3C = ::Selenium::WebDriver::Remote::W3C::Bridge::COMMANDS.freeze
7+
end # module Commands
8+
end # module Base
9+
end # module Core
10+
end # module Appium

lib/appium_lib/core/common/base/http_default.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Appium
22
module Core
3-
module Base
3+
class Base
44
module Http
55
class Default < Selenium::WebDriver::Remote::Http::Default
66
# TODO: when divide the core to the other gem, then update here. appium/ruby_lib_core/#{version}
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,89 @@
11
module Appium
22
module Core
3-
module SearchContext
4-
# referenced: ::Selenium::WebDriver::SearchContext
3+
class Base
4+
module SearchContext
5+
# referenced: ::Selenium::WebDriver::SearchContext
56

6-
FINDERS = ::Selenium::WebDriver::SearchContext::FINDERS.merge(accessibility_id: 'accessibility id')
7+
FINDERS = ::Selenium::WebDriver::SearchContext::FINDERS.merge(accessibility_id: 'accessibility id')
78

8-
def self.add_finders(finders)
9-
FINDERS.merge!(finders)
10-
end
9+
def self.add_finders(finders)
10+
FINDERS.merge!(finders)
11+
end
1112

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
3638
end
37-
end
3839

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
5153
end
52-
end
5354

54-
private
55+
private
5556

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
6263

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
6970

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
7374

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
7980

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
8385
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

lib/appium_lib/core/common/base/wait.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Appium
22
module Core
3-
module Base
3+
class Base
44
class Wait < ::Selenium::WebDriver::Wait
55
require 'timeout' # for wait
66

lib/appium_lib/core/common/command.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require_relative 'base/command'
2+
13
module Appium
24
module Core
35
# ref: https://github.com/appium/appium-base-driver/blob/master/lib/mjsonwp/routes.js

0 commit comments

Comments
 (0)