Skip to content

Commit ab915cf

Browse files
Update driver opts
Fix button test Fix tests
1 parent b495c5e commit ab915cf

File tree

4 files changed

+45
-23
lines changed

4 files changed

+45
-23
lines changed

android_tests/lib/android/specs/common/device.rb

+11-3
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@
3232
wait { current_activity.must_equal '.ApiDemos' }
3333
end
3434

35+
# appium's context support is broken on android
36+
3537
t 'available_contexts' do
36-
wait { available_contexts.must_equal ['NATIVE_APP'] }
38+
wait_true { available_contexts.include? 'NATIVE_APP' }
3739
end
3840

3941
t 'current_context' do
@@ -43,8 +45,11 @@
4345
t 'set_context' do
4446
wait { scroll_to('Views').click }
4547
wait { scroll_to('WebView').click }
46-
wait { set_context 'WEBVIEW' }
47-
wait { current_context.must_equal 'WEBVIEW_1' }
48+
49+
webview_context = available_contexts.detect { |e| e.start_with?('WEBVIEW') }
50+
51+
wait { set_context webview_context }
52+
wait { current_context.must_equal webview_context }
4853

4954
wait { set_context 'NATIVE_APP' }
5055
wait { current_context.must_equal 'NATIVE_APP' }
@@ -63,6 +68,9 @@
6368
switch_to_default_context
6469
current_context.must_equal 'NATIVE_APP'
6570
end
71+
72+
wait { set_context 'NATIVE_APP' }
73+
wait { current_context.must_equal 'NATIVE_APP' }
6674
end
6775

6876
t 'app_strings' do
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
# Tests specifically for areas where the web_context differs in behaviour
2+
# rake android[common/web_context]
23
describe 'the web context' do
34

45
t 'get_android_inspect' do
5-
scroll_to "Views"
6+
scroll_to 'Views'
67
last_text.click
78
scroll_to 'WebView'
89
last_text.click
9-
set_context 'WEBVIEW'
10-
current_context.must_equal 'WEBVIEW_1'
10+
11+
webview_context = available_contexts.detect { |e| e.start_with?('WEBVIEW') }
12+
13+
set_context webview_context
14+
current_context.must_equal webview_context
1115
get_android_inspect.split("\n").length.must_be :>=, 3
1216
end
1317
end

lib/appium_lib/android/element/button.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ def last_button
8686
# uiautomator index doesn't support last
8787
# and it's 0 indexed
8888
button_index = tags(Button).length
89-
button_index -= 1 if button_index >= 0
89+
button_index -= 1 if button_index > 0
9090
image_button_index = tags(ImageButton).length
91-
image_button_index -= 1 if image_button_index >= 0
91+
image_button_index -= 1 if image_button_index > 0
9292

9393
complex_find _button_visible_selectors button_index: button_index, image_button_index: image_button_index
9494
end

lib/appium_lib/driver.rb

+25-15
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,17 @@ class Driver
210210
# made available via the driver_attributes method
211211

212212
# The amount to sleep in seconds before every webdriver http call.
213-
attr_accessor :global_webdriver_http_sleep
213+
attr_accessor :global_webdriver_http_sleep,
214+
:caps,
215+
:custom_url,
216+
:export_session,
217+
:default_wait,
218+
:last_waits,
219+
:sauce_username,
220+
:sauce_access_key,
221+
:appium_port,
222+
:appium_device,
223+
:appium_debug
214224

215225
# Creates a new driver
216226
#
@@ -251,7 +261,7 @@ def initialize opts={}
251261
@sauce_username = nil if !@sauce_username || (@sauce_username.is_a?(String) && @sauce_username.empty?)
252262
@sauce_access_key = appium_lib_opts.fetch :sauce_access_key, ENV['SAUCE_ACCESS_KEY']
253263
@sauce_access_key = nil if !@sauce_access_key || (@sauce_access_key.is_a?(String) && @sauce_access_key.empty?)
254-
@port = appium_lib_opts.fetch :port, 4723
264+
@appium_port = appium_lib_opts.fetch :port, 4723
255265

256266
# Path to the .apk, .app or .app.zip.
257267
# The path can be local or remote for Sauce.
@@ -260,10 +270,10 @@ def initialize opts={}
260270
end
261271

262272
# https://code.google.com/p/selenium/source/browse/spec-draft.md?repo=mobile
263-
@device = @caps[:platformName]
264-
@device = @device.is_a?(Symbol) ? @device : @device.downcase.strip.intern if @device
265-
raise "platformName must be set. Not found in options: #{opts}" unless @device
266-
raise 'platformName must be Android or iOS' unless [:android, :ios].include?(@device)
273+
@appium_device = @caps[:platformName]
274+
@appium_device = @appium_device.is_a?(Symbol) ? @appium_device : @appium_device.downcase.strip.intern if @appium_device
275+
raise "platformName must be set. Not found in options: #{opts}" unless @appium_device
276+
raise 'platformName must be Android or iOS' unless [:android, :ios].include?(@appium_device)
267277

268278
# load common methods
269279
extend Appium::Common
@@ -280,12 +290,12 @@ def initialize opts={}
280290

281291
# enable debug patch
282292
# !!'constant' == true
283-
@debug = appium_lib_opts.fetch :debug, !!defined?(Pry)
293+
@appium_debug = appium_lib_opts.fetch :debug, !!defined?(Pry)
284294

285-
if @debug
295+
if @appium_debug
286296
ap opts unless opts.empty?
287-
puts "Debug is: #{@debug}"
288-
puts "Device is: #{@device}"
297+
puts "Debug is: #{@appium_debug}"
298+
puts "Device is: #{@appium_device}"
289299
patch_webdriver_bridge
290300
end
291301

@@ -316,9 +326,9 @@ def driver_attributes
316326
last_waits: @last_waits,
317327
sauce_username: @sauce_username,
318328
sauce_access_key: @sauce_access_key,
319-
port: @port,
320-
device: @device,
321-
debug: @debug,
329+
port: @appium_port,
330+
device: @appium_device,
331+
debug: @appium_debug,
322332
}
323333

324334
# Return duplicates so attributes are immutable
@@ -329,7 +339,7 @@ def driver_attributes
329339
end
330340

331341
def device_is_android?
332-
@device == :android
342+
@appium_device == :android
333343
end
334344

335345
# Returns the server's version info
@@ -379,7 +389,7 @@ def server_url
379389
if !@sauce_username.nil? && !@sauce_access_key.nil?
380390
"http://#{@sauce_username}:#{@sauce_access_key}@ondemand.saucelabs.com:80/wd/hub"
381391
else
382-
"http://127.0.0.1:#{@port}/wd/hub"
392+
"http://127.0.0.1:#{@appium_port}/wd/hub"
383393
end
384394
end
385395

0 commit comments

Comments
 (0)