timing change on WLC(config)# to 300ms to change prompt

This commit is contained in:
Chuck SmileyRekiere
2020-09-23 22:02:45 -06:00
parent aaa3007965
commit 6bff055e9e

View File

@@ -975,6 +975,8 @@ def main():
if i == 0:
logg.info("WLC> prompt received can send logout")
egg.sendline("logout")
sleep(0.1)
break
if i == 1:
logg.info("WLC# prompt received will send logout")
@@ -989,7 +991,7 @@ def main():
logg.info("WLC(config)# prompt received will send exit")
try:
egg.sendline("exit")
sleep(0.1)
sleep(0.5)
except:
logg.info("9800 exception on exit")
sleep(0.1)
@@ -1005,7 +1007,7 @@ def main():
logg.info("(config-policy-tag)# prompt received will send exit")
try:
egg.sendline("exit")
sleep(0.1)
sleep(0.5)
except:
logg.info("9800 exception on exit")
sleep(0.1)