File tree 3 files changed +12
-3
lines changed
test/functional/android/android
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ Read `release_notes.md` for commit level details.
4
4
5
5
## [ Unreleased]
6
6
### Enhancements
7
+
8
+ ### Bug fixes
9
+
10
+ ### Deprecations
11
+
12
+ ## [ 2.2.0] - 2018-12-01
13
+ ### Enhancements
7
14
- Add ` ::Appium::Core::Base.platform ` to call ` ::Selenium::WebDriver::Platform `
8
15
- Can identify platform using ` ::Appium::Core::Base.platform.windows? ` for example
9
16
@@ -12,7 +19,6 @@ Read `release_notes.md` for commit level details.
12
19
### Deprecations
13
20
- ` :offset_x ` and ` :offset_y ` in ` TouchAction#swipe ` is deprecated in favor of ` :end_x ` and ` :end_y `
14
21
15
-
16
22
## [ 2.1.1] - 2018-11-23
17
23
### Enhancements
18
24
- ` desired_capabilities: ` is available in addition to ` caps: ` as a capability
Original file line number Diff line number Diff line change 1
1
module Appium
2
2
module Core
3
- VERSION = '2.1.1 ' . freeze unless defined? ::Appium ::Core ::VERSION
4
- DATE = '2018-11-23 ' . freeze unless defined? ::Appium ::Core ::DATE
3
+ VERSION = '2.2.0 ' . freeze unless defined? ::Appium ::Core ::VERSION
4
+ DATE = '2018-12-01 ' . freeze unless defined? ::Appium ::Core ::DATE
5
5
end
6
6
end
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ class DeviceTest < AppiumLibCoreTest::Function::TestCase
8
8
def setup
9
9
@@core ||= ::Appium ::Core . for ( Caps . android )
10
10
@driver = @@core . start_driver
11
+
12
+ require 'pry'
13
+ binding . pry
11
14
end
12
15
13
16
def teardown
You can’t perform that action at this time.
0 commit comments