Skip to content

Commit 9e8cd0a

Browse files
Add status
1 parent 978d489 commit 9e8cd0a

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

lib/appium_lib/common/patch.rb

+20
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
11
# 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+
222
module Appium::Common
323
# Implement useful features for element.
424
class Selenium::WebDriver::Element

lib/appium_lib/driver.rb

+11
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,17 @@ def initialize options={}
149149
self # return newly created driver
150150
end # def initialize
151151

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+
152163
# @private
153164
# WebDriver capabilities. Must be valid for Sauce to work.
154165
# https://github.com/jlipps/appium/blob/master/app/android.js

0 commit comments

Comments
 (0)