Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,7 @@ def start_appium_driver(
if str(appium_details[device_id]["type"]).lower() == "android":
# All Desired caps = https://appium.io/docs/en/writing-running-appium/caps/
desired_caps["platformName"] = appium_details[device_id]["type"] # Set platform name
desired_caps["udid"] = appium_details[device_id]["serial"]
desired_caps["autoLaunch"] = "false" # Do not launch application
desired_caps["fullReset"] = "false" # Do not reinstall application
if no_reset:
Expand Down
1 change: 1 addition & 0 deletions Framework/MainDriverApi.py
Original file line number Diff line number Diff line change
Expand Up @@ -1260,6 +1260,7 @@ def send_dom_variables():
def set_device_info_according_to_user_order(device_order, device_dict, test_case_no, test_case_name, user_info_object, Userid, **kwargs):
# Need to set device_info for browserstack here
global device_info
device_order = [[i, i] for i in range(1, len(device_dict) + 1)] # overriding zsvc return device order. zsvc only returns [[1,1]] without considering the number of devices available
shared.Set_Shared_Variables("device_order", device_order)
if isinstance(device_order, list):
try:
Expand Down
Loading
Loading