- changed check ssid range to 9

This commit is contained in:
Sushant Bawiskar
2021-12-10 15:56:14 +05:30
committed by GitHub
parent 263b708122
commit 6a80710eac

View File

@@ -1015,7 +1015,7 @@ def get_ip_address_ios(request, WifiName, WifiPass, setup_perfectoMobile, connDa
available_ssids = False
try:
for check_for_all_ssids in range(10):
for check_for_all_ssids in range(9):
available_ssids = get_all_available_ssids(driver)
allure.attach(name="Available SSIDs in device: ", body=str(available_ssids))
try: