Fix wrong prompt issue for network modules (#32426)

* Fix wrong prompt issue for network moodules

Fixes #31161
Fixes #32416

*  Store the device prompt in case of error
   from remote device
*  Check for prompt value in ios action plugin

* Add integration test
This commit is contained in:
Ganesh Nalawade 2017-11-01 19:38:19 +05:30 committed by GitHub
parent 0405edcac8
commit 26583adb58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 1 deletions

View file

@ -248,6 +248,7 @@ class Connection(Rpc, _Connection):
match = regex.search(response)
if match:
errored_response = response
self._matched_prompt = match.group()
break
if not is_error_message: