1
다음 테스트 케이스에 스위치 연결을 사용하지 마십시오. 일에 이어 ... 내 테스트 케이스입니다 그래서 이것을 어떻게 R2 다시 R1에서 R2 &에 대한 연결을 전환 할 수 있습니다 : 당신이 이전에 설정 한 변수를 변경하려면로봇 연결 프레임 워크에서 텔넷 라이브러리를 사용하여 스위치 연결에 대한 예를 들어 주시겠습니까
*** Settings ***
Library Telnet
*** Variables ***
${R1} 20.1.1.1
${R2} 20.1.1.2
${username1} naveen
${password1} kumar
${username2} hi
${password2} bye
*** Test Cases ***
telnet4
Open Connection ${R1} prompt=username prompt=password alias=conn01
Write ${username1}
Write ${password1}
Read Until >
Write enable
Read Until Password
Write ${password1}
Write R1
Read Until \#
Write show ip route
Read Until \#
Open Connection ${R2} prompt=username prompt=password alias=conn02
Write ${username2}
Write ${password2}
Read Until >
Write enable
Read Until Password
Write ${password2}
Write R2
Read Until \#
Write show ip route
Read Until \#
Switch Connection conn01
Switch Connection conn02
이미 해결책이있는 것처럼 보입니다. 스위치 연결은 필요한 방식으로 정확하게 작동합니다. – Waman