Added extra delay in reboot and factory reset methods (#640)

Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>
This commit is contained in:
jitendracandela
2022-06-23 17:44:52 +05:30
committed by GitHub
parent 3ca5183808
commit 558d3ab1ae

View File

@@ -33,7 +33,7 @@ class TestAP(object):
"when": 0
}
resp = setup_controller.ap_reboot(device_name, payload)
time.sleep(120)
time.sleep(150)
print(resp.json())
allure.attach(name="Reboot", body=str(resp.json()), attachment_type=allure.attachment_type.JSON)
for ap in get_configuration['access_point']:
@@ -78,7 +78,7 @@ class TestAP(object):
"keepRedirector": True
}
resp = setup_controller.ap_factory_reset(device_name, payload)
time.sleep(150)
time.sleep(200)
print(resp.json())
allure.attach(name="Factory Reset", body=str(resp.json()), attachment_type=allure.attachment_type.JSON)
for ap in get_configuration['access_point']: