I'm using the Telnet Library of the Robot Framework to establish a remote connection, but I need the terminal to be opened, but despite having set terminal_emulator=true
and window_size=400x100
the RF does not open the terminal when I run the test. There is no error, the test passes, but the terminal is not open. Would anyone have an idea of what it could be?
This is what I'm doing:
*** Settings ***
Library Telnet terminal_emulation=True window_size=400x100
*** Variable ***
${Host} ...
${Port} ...
*** Test Cases ***
Telnet Connection
Open Connection ${Host} port=${Port}
Login <username> <password> login_prompt=Username: _________ password_prompt=Password: _________
Close All Connections