lib/appium_lib.rb in appium_lib-0.5.14 vs lib/appium_lib.rb in appium_lib-0.5.15
- old
+ new
@@ -9,12 +9,13 @@
if $driver.respond_to?(method)
# puts "[method_missing] Calling driver.send for #{method}"
$driver.send(method, *args, &block)
elsif self.respond_to?(method)
- # puts "[method_missing] Calling super for #{method}"
+ # puts "[method_missing] Calling super with args for #{method}"
super(*args, &block)
else
+ # puts "[method_missing] Calling super (no args) for #{method}"
super
end
end
module Appium
\ No newline at end of file