Sha256: 78b863542dea902316b21b24af3cb2b4381dce4ee26c2dc25213211b99f2927a
Contents?: true
Size: 1.16 KB
Versions: 92
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. module Appium module Core class Base module Device module BatteryStatus ANDROID = [ :undefined, # 0, dummy :unknown, # 1 :charging, # 2 :discharging, # 3 :not_charging, # 4 :full # 5 ].freeze IOS = [ :unknown, # 0 :unplugged, # 1 :charging, # 2 :full # 3 ].freeze end # module BatteryStatus end # module Device end # class Base end # module Core end # module Appium
Version data entries
92 entries across 92 versions & 1 rubygems