File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1
1
# encoding: utf-8
2
+
3
+ # Add status to WebDriver
4
+ # https://code.google.com/p/selenium/issues/detail?id=5669
5
+ class Selenium ::WebDriver ::Driver
6
+ def status
7
+ bridge . status
8
+ end
9
+ end
10
+
11
+ class Selenium ::WebDriver ::Remote ::Bridge
12
+ def status
13
+ raw_execute :status
14
+ end
15
+ end
16
+
17
+ class Selenium ::WebDriver ::Remote ::Bridge
18
+ command :status , :get , 'status'
19
+ end
20
+ # end Add status to WebDriver
21
+
2
22
module Appium ::Common
3
23
# Implement useful features for element.
4
24
class Selenium ::WebDriver ::Element
Original file line number Diff line number Diff line change @@ -149,6 +149,17 @@ def initialize options={}
149
149
self # return newly created driver
150
150
end # def initialize
151
151
152
+ # Returns the status payload
153
+ def status
154
+ driver . status . payload
155
+ end
156
+
157
+ # Returns the server's version string
158
+ # @return [String]
159
+ def server_version
160
+ status [ 'value' ] [ 'build' ] [ 'version' ]
161
+ end
162
+
152
163
# @private
153
164
# WebDriver capabilities. Must be valid for Sauce to work.
154
165
# https://github.com/jlipps/appium/blob/master/app/android.js
You can’t perform that action at this time.
0 commit comments