Module: TestCentricity::AppiumConnect
- Defined in:
- lib/testcentricity_mobile/app_core/appium_connect_helper.rb
Instance Attribute Summary collapse
-
#capabilities ⇒ Object
Returns the value of attribute capabilities.
-
#driver ⇒ Object
Returns the value of attribute driver.
-
#endpoint ⇒ Object
Returns the value of attribute endpoint.
-
#global_scope ⇒ Object
Returns the value of attribute global_scope.
-
#running ⇒ Object
Returns the value of attribute running.
Class Method Summary collapse
-
.activate_app(bundle_id = nil) ⇒ Object
Launch the app.
-
.app_installed?(bundle_id = nil) ⇒ Boolean
Is the app installed? If bundle_id is not specified, then bundle id will be retrieved from Environ.current.ios_bundle_id or Environ.current.android_app_id dependent on which platform is being tested.
-
.app_state(bundle_id = nil) ⇒ Symbol
Get status of app.
- .available_contexts ⇒ Object
-
.background_app(duration = 0) ⇒ Object
Backgrounds the app for a specified number of seconds.
- .biometric_match(type, match) ⇒ Object
- .current_context ⇒ Object
-
.driver ⇒ Object
Return a reference to last created Appium driver.
- .geolocation ⇒ Object
-
.hide_keyboard ⇒ Object
Hide the onscreen keyboard.
-
.implicit_wait(timeout) ⇒ Object
Set the amount of time the driver should wait when searching for elements.
-
.initialize_appium(options = nil) ⇒ Object
Create a new driver instance with capabilities specified in the options parameter, or via Environment Variables.
-
.install_app(app_path) ⇒ Object
Install app on device.
- .is_biometric_enrolled? ⇒ Boolean
- .is_native_app? ⇒ Boolean
- .is_webview? ⇒ Boolean
-
.keyboard_shown? ⇒ Boolean
Is onscreen keyboard displayed?.
-
.orientation ⇒ Symbol
Get the current screen orientation.
-
.quit_driver ⇒ Object
Quit the running driver instance.
-
.remove_app(bundle_id = nil) ⇒ Object
Remove app from device.
-
.rotation(orientation) ⇒ Object
Change the screen orientation.
- .set_biometric_enrollment(state) ⇒ Object
- .set_context(context) ⇒ Object
- .set_geolocation(location_data) ⇒ Object
-
.take_screenshot(png_save_path) ⇒ Object
Save a screenshot in .png format to the specified file path.
-
.terminate_app(bundle_id = nil) ⇒ Object
Terminate the app.
-
.upload_app(service) ⇒ Object
:nocov:.
- .webview_context ⇒ Object
-
.window_rect ⇒ Selenium::WebDriver::Rectangle
Get the device's window rectangle.
-
.window_size ⇒ Array
Get the device's window size.
Instance Attribute Details
#capabilities ⇒ Object
Returns the value of attribute capabilities.
13 14 15 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 13 def capabilities @capabilities end |
#driver ⇒ Object
Returns the value of attribute driver.
10 11 12 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 10 def driver @driver end |
#endpoint ⇒ Object
Returns the value of attribute endpoint.
12 13 14 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 12 def endpoint @endpoint end |
#global_scope ⇒ Object
Returns the value of attribute global_scope.
14 15 16 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 14 def global_scope @global_scope end |
#running ⇒ Object
Returns the value of attribute running.
11 12 13 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 11 def running @running end |
Class Method Details
.activate_app(bundle_id = nil) ⇒ Object
Launch the app. If bundle_id is not specified, then bundle id will be retrieved from Environ.current.ios_bundle_id or Environ.current.android_app_id dependent on which platform is being tested.
162 163 164 165 166 167 168 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 162 def self.activate_app(bundle_id = nil) driver.activate_app(get_app_id(bundle_id)) if Environ.is_android? sleep(1.5) if app_state == :running_in_foreground end Environ.new_app_session end |
.app_installed?(bundle_id = nil) ⇒ Boolean
Is the app installed? If bundle_id is not specified, then bundle id will be retrieved from Environ.current.ios_bundle_id or Environ.current.android_app_id dependent on which platform is being tested.
141 142 143 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 141 def self.app_installed?(bundle_id = nil) driver.app_installed?(get_app_id(bundle_id)) end |
.app_state(bundle_id = nil) ⇒ Symbol
Get status of app. If bundle_id is not specified, then bundle id will be retrieved from Environ.current.ios_bundle_id or Environ.current.android_app_id dependent on which platform is being tested. Returns the following statuses: :not_installed - The current application state cannot be determined/is unknown :not_running - The application is not running :running_in_background_suspended - The application is running in the background and is suspended :running_in_background - The application is running in the background and is not suspended :running_in_foreground - The application is running in the foreground
183 184 185 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 183 def self.app_state(bundle_id = nil) driver.app_state(get_app_id(bundle_id)) end |
.available_contexts ⇒ Object
270 271 272 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 270 def self.available_contexts driver.available_contexts end |
.background_app(duration = 0) ⇒ Object
Backgrounds the app for a specified number of seconds.
151 152 153 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 151 def self.background_app(duration = 0) driver.background_app(duration) end |
.biometric_match(type, match) ⇒ Object
305 306 307 308 309 310 311 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 305 def self.biometric_match(type, match) if Environ.is_ios? @driver.execute_script('mobile: sendBiometricMatch', { type: type, match: match }) else raise 'biometric_match is not supported for Android' end end |
.current_context ⇒ Object
262 263 264 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 262 def self.current_context driver.current_context end |
.driver ⇒ Object
Return a reference to last created Appium driver
96 97 98 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 96 def self.driver @driver end |
.geolocation ⇒ Object
254 255 256 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 254 def self.geolocation driver.driver.location end |
.hide_keyboard ⇒ Object
Hide the onscreen keyboard
208 209 210 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 208 def self.hide_keyboard driver.hide_keyboard end |
.implicit_wait(timeout) ⇒ Object
Set the amount of time the driver should wait when searching for elements.
202 203 204 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 202 def self.implicit_wait(timeout) driver.manage.timeouts.implicit_wait = timeout end |
.initialize_appium(options = nil) ⇒ Object
Create a new driver instance with capabilities specified in the options parameter, or via Environment Variables.
Refer to the Connecting to a Mobile Simulator or Device
section of the ruby docs for this gem.
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 19 def self.initialize_appium( = nil) @endpoint = nil @capabilities = nil @running = false @global_scope = false Environ.driver_name = nil Environ.device_orientation = nil Environ.platform = :mobile Environ.device = :simulator if .is_a?(Hash) @endpoint = [:endpoint] if .key?(:endpoint) @capabilities = [:capabilities] if .key?(:capabilities) @global_scope = [:global_driver] if .key?(:global_driver) Environ.driver = [:driver] if .key?(:driver) Environ.driver_name = [:driver_name] if .key?(:driver_name) Environ.device_type = [:device_type] if .key?(:device_type) end if @capabilities.nil? Environ.driver = ENV['DRIVER'].downcase.to_sym if ENV['DRIVER'] Environ.device_type = ENV['DEVICE_TYPE'] if ENV['DEVICE_TYPE'] Environ.device_orientation = ENV['ORIENTATION'] if ENV['ORIENTATION'] else raise ':browserName is specified in capabilities' if @capabilities[:browserName] end raise 'You must specify a driver' if Environ.driver.nil? raise 'You must specify a device type - :phone or :tablet' if Environ.device_type.nil? driver_caps = case Environ.driver when :appium appium_local_capabilities when :custom raise 'User-defined cloud driver requires that you define options' if .nil? custom_capabilities when :browserstack browserstack_capabilities when :testingbot testingbot_capabilities # :nocov: when :saucelabs sauce_capabilities else raise "#{Environ.driver} is not a supported driver" # :nocov: end driver_opts = { caps: driver_caps, appium_lib: { server_url: @endpoint } } @driver = Appium::Driver.new(driver_opts, global_driver = @global_scope) @driver.start_driver Environ.appium_driver = @driver @running = true Appium.promote_appium_methods(TestCentricity::ScreenObject, driver = @driver) Appium.promote_appium_methods(TestCentricity::ScreenSection, driver = @driver) Appium.promote_appium_methods(TestCentricity::AppElements::AppUIElement, driver = @driver) Environ.screen_size = window_size unless Environ.driver_name Environ.driver_name = "#{Environ.driver}_#{Environ.device_os}_#{Environ.device_type}".downcase.to_sym end Environ.session_state = :running end |
.install_app(app_path) ⇒ Object
Install app on device. If bundle_id is not specified, then bundle id will be retrieved from Environ.current.ios_bundle_id or Environ.current.android_app_id dependent on which platform is being tested.
118 119 120 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 118 def self.install_app(app_path) driver.install_app(app_path) end |
.is_biometric_enrolled? ⇒ Boolean
289 290 291 292 293 294 295 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 289 def self.is_biometric_enrolled? if Environ.is_ios? @driver.execute_script('mobile: isBiometricEnrolled') else puts 'biometric_enrollment is not supported for Android' end end |
.is_native_app? ⇒ Boolean
278 279 280 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 278 def self.is_native_app? driver.current_context.start_with?('NATIVE_APP') end |
.is_webview? ⇒ Boolean
274 275 276 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 274 def self.is_webview? driver.current_context.start_with?('WEBVIEW') end |
.keyboard_shown? ⇒ Boolean
Is onscreen keyboard displayed?
216 217 218 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 216 def self.keyboard_shown? @driver.execute_script('mobile: isKeyboardShown') end |
.orientation ⇒ Symbol
Get the current screen orientation
224 225 226 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 224 def self.orientation driver.driver.orientation end |
.quit_driver ⇒ Object
Quit the running driver instance. Sets Environ.session_state to :quit.
86 87 88 89 90 91 92 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 86 def self.quit_driver if @running driver.driver_quit @running = false end Environ.session_state = :quit end |
.remove_app(bundle_id = nil) ⇒ Object
Remove app from device. If bundle_id is not specified, then bundle id will be retrieved from Environ.current.ios_bundle_id or Environ.current.android_app_id dependent on which platform is being tested.
129 130 131 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 129 def self.remove_app(bundle_id = nil) driver.remove_app(get_app_id(bundle_id)) end |
.rotation(orientation) ⇒ Object
Change the screen orientation
232 233 234 235 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 232 def self.rotation(orientation) orientation.downcase.to_sym if orientation.is_a?(String) driver.driver.rotation = orientation end |
.set_biometric_enrollment(state) ⇒ Object
297 298 299 300 301 302 303 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 297 def self.set_biometric_enrollment(state) if Environ.is_ios? @driver.execute_script('mobile: enrollBiometric', { isEnabled: state }) else puts 'biometric_enrollment is not supported for Android' end end |
.set_context(context) ⇒ Object
266 267 268 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 266 def self.set_context(context) driver.set_context(context) end |
.set_geolocation(location_data) ⇒ Object
258 259 260 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 258 def self.set_geolocation(location_data) driver.set_location(location_data) end |
.take_screenshot(png_save_path) ⇒ Object
Save a screenshot in .png format to the specified file path.
106 107 108 109 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 106 def self.take_screenshot(png_save_path) FileUtils.mkdir_p(File.dirname(png_save_path)) driver.driver.save_screenshot(png_save_path) end |
.terminate_app(bundle_id = nil) ⇒ Object
Terminate the app. If bundle_id is not specified, then bundle id will be retrieved from Environ.current.ios_bundle_id or Environ.current.android_app_id dependent on which platform is being tested.
194 195 196 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 194 def self.terminate_app(bundle_id = nil) driver.terminate_app(get_app_id(bundle_id)) end |
.upload_app(service) ⇒ Object
:nocov:
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 314 def self.upload_app(service) # determine app custom test id (if specified) custom_id = if ENV['APP_ID'] ENV['APP_ID'] else Environ.is_android? ? Environ.current.android_test_id : Environ.current.ios_test_id end # determine endpoint url, user id, and auth key for specified cloud service provider case service when :browserstack url = 'https://api-cloud.browserstack.com/app-automate/upload' user_id = ENV['BS_USERNAME'] auth_key = ENV['BS_AUTHKEY'] when :testingbot url = 'https://api.testingbot.com/v1/storage' url = "#{url}/#{custom_id}" unless custom_id.nil? user_id = ENV['TB_USERNAME'] auth_key = ENV['TB_AUTHKEY'] else raise "#{service} is not supported" end # determine file path of app to be uploaded to cloud service file_path = if Environ.is_android? Environ.current.android_apk_path elsif Environ.is_ios? Environ.is_device? ? Environ.current.ios_ipa_path : Environ.current.ios_app_path end request = Net::HTTP::Post.new(url) boundary = "WebAppBoundary" post_body = [] post_body << "--#{boundary}\r\n" post_body << "Content-Disposition: form-data; name=\"file\"; filename=\"#{file_path}\"\r\n" post_body << "\r\n" post_body << File.open(file_path) {|io| io.read} # add custom id form data to post body if a custom test id has been provided if !custom_id.nil? && service == :browserstack post_body << "\r\n--#{boundary}\r\n" post_body << "Content-Disposition: form-data; name=\"custom_id\"\r\n" post_body << "\r\n" post_body << "#{custom_id}" end post_body << "\r\n--#{boundary}--\r\n" request.body = post_body.join request["Content-Type"] = "multipart/form-data; boundary=#{boundary}" request.basic_auth(user_id, auth_key) # send the request to upload to cloud service provider uri = URI.parse(url) conn = Net::HTTP.new(uri.host, uri.port) if uri.scheme == 'https' conn.use_ssl = true conn.verify_mode = OpenSSL::SSL::VERIFY_NONE end response = conn.request(request) result = JSON.parse(response.body) if response.code.to_i > 202 raise "An error has occurred while attempting to upload #{file_path} to the #{service} service\n#{result}" else puts "Successfully uploaded #{file_path} to the #{service} service\n#{result}" end end |
.webview_context ⇒ Object
282 283 284 285 286 287 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 282 def self.webview_context contexts = driver.available_contexts puts "Contexts = #{contexts}" if ENV['DEBUG'] set_context(contexts.last) puts "Current context = #{driver.current_context}" if ENV['DEBUG'] end |
.window_rect ⇒ Selenium::WebDriver::Rectangle
Get the device's window rectangle.
250 251 252 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 250 def self.window_rect driver.window_rect end |
.window_size ⇒ Array
Get the device's window size.
241 242 243 244 |
# File 'lib/testcentricity_mobile/app_core/appium_connect_helper.rb', line 241 def self.window_size size = driver.window_size [size.width, size.height] end |