Skip to content

Commit 76198ad

Browse files
Fix reset clearing iOS JavaScript
1 parent 445519b commit 76198ad

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lib/appium_lib/driver.rb

+7
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,13 @@ def execute_script script, *args
254254
def mobile method, *args
255255
raise 'Method must not be nil' if method.nil?
256256
raise 'Method must have .to_s' unless method.respond_to? :to_s
257+
258+
if method.to_s.strip.downcase == 'reset'
259+
# reset will undefine custom iOS JavaScript
260+
# mark js as unloaded so it'll reload next use.
261+
@ios_js = [] if @ios_js
262+
end
263+
257264
@driver.execute_script "mobile: #{method.to_s}", *args
258265
end
259266

0 commit comments

Comments
 (0)