Telnet
Telnet
¶
A library providing communication over Telnet connections.
Telnet
is Robot Framework's standard library that makes it possible to
connect to Telnet servers and execute commands on the opened connections.
== Table of contents ==
%TOC%
= Connections =
The first step of using Telnet
is opening a connection with Open
Connection
keyword. Typically the next step is logging in with Login
keyword, and in the end the opened connection can be closed with Close
Connection
.
It is possible to open multiple connections and switch the active one
using Switch Connection
. Close All Connections
can be used to close
all the connections, which is especially useful in suite teardowns to
guarantee that all connections are always closed.
= Writing and reading =
After opening a connection and possibly logging in, commands can be
executed or text written to the connection for other reasons using Write
and Write Bare
keywords. The main difference between these two is that
the former adds a [#Configuration|configurable newline] after the text
automatically.
After writing something to the connection, the resulting output can be
read using Read
, Read Until
, Read Until Regexp
, and Read Until
Prompt
keywords. Which one to use depends on the context, but the latest
one is often the most convenient.
As a convenience when running a command, it is possible to use Execute
Command
that simply uses Write
and Read Until Prompt
internally.
Write Until Expected Output
is useful if you need to wait until writing
something produces a desired output.
Written and read text is automatically encoded/decoded using a [#Configuration|configured encoding].
The ANSI escape codes, like cursor movement and color codes, are
normally returned as part of the read operation. If an escape code occurs
in middle of a search pattern it may also prevent finding the searched
string. Terminal emulation
can be used to process these
escape codes as they would be if a real terminal would be in use.
= Configuration =
Many aspects related the connections can be easily configured either
globally or per connection basis. Global configuration is done when
[#Importing|library is imported], and these values can be overridden per
connection by Open Connection
or with setting specific keywords
Set Timeout
, Set Newline
, Set Prompt
, Set Encoding
,
Set Default Log Level
and Set Telnetlib Log Level
.
Values of environ_user
, window_size
, terminal_emulation
, and
terminal_type
can not be changed after opening the connection.
== Timeout ==
Timeout defines how long is the maximum time to wait when reading
output. It is used internally by Read Until
, Read Until Regexp
,
Read Until Prompt
, and Login
keywords. The default value is 3 seconds.
== Connection Timeout ==
Connection Timeout defines how long is the maximum time to wait when
opening the telnet connection. It is used internally by Open Connection
.
The default value is the system global default timeout.
== Newline ==
Newline defines which line separator Write
keyword should use. The
default value is CRLF
that is typically used by Telnet connections.
Newline can be given either in escaped format using \n
and \r
or
with special LF
and CR
syntax.
Examples:
| Set Newline
| \n |
| Set Newline
| CRLF |
== Prompt ==
Often the easiest way to read the output of a command is reading all
the output until the next prompt with Read Until Prompt
. It also makes
it easier, and faster, to verify did Login
succeed.
Prompt can be specified either as a normal string or a regular expression.
The latter is especially useful if the prompt changes as a result of
the executed commands. Prompt can be set to be a regular expression
by giving prompt_is_regexp
argument a true value (see Boolean
arguments
).
Examples:
| Open Connection
| lolcathost | prompt=$ |
| Set Prompt
| (> |# ) | prompt_is_regexp=true |
== Encoding ==
To ease handling text containing non-ASCII characters, all written text is
encoded and read text decoded by default. The default encoding is UTF-8
that works also with ASCII. Encoding can be disabled by using a special
encoding value NONE
. This is mainly useful if you need to get the bytes
received from the connection as-is.
Notice that when writing to the connection, only Unicode strings are encoded using the defined encoding. Byte strings are expected to be already encoded correctly. Notice also that normal text in data is passed to the library as Unicode and you need to use variables to use bytes.
It is also possible to configure the error handler to use if encoding or decoding characters fails. Accepted values are the same that encode/decode functions in Python strings accept. In practice the following values are the most useful:
ignore
: ignore characters that cannot be encoded (default)strict
: fail if characters cannot be encodedreplace
: replace characters that cannot be encoded with a replacement character
Examples:
| Open Connection
| lolcathost | encoding=Latin1 | encoding_errors=strict |
| Set Encoding
| ISO-8859-15 |
| Set Encoding
| errors=ignore |
== Default log level ==
Default log level specifies the log level keywords use for logging
unless
they are given an explicit log level. The default value is INFO
, and
changing it, for example, to DEBUG
can be a good idea if there is lot
of unnecessary output that makes log files big.
== Terminal type ==
By default the Telnet library does not negotiate any specific terminal type
with the server. If a specific terminal type, for example vt100
, is
desired, the terminal type can be configured in importing
and with
Open Connection
.
== Window size ==
Window size for negotiation with the server can be configured when
importing
the library and with Open Connection
.
== USER environment variable ==
Telnet protocol allows the USER
environment variable to be sent when
connecting to the server. On some servers it may happen that there is no
login prompt, and on those cases this configuration option will allow still
to define the desired username. The option environ_user
can be used in
importing
and with Open Connection
.
= Terminal emulation =
Telnet library supports terminal
emulation with [http://pyte.readthedocs.io|Pyte]. Terminal emulation
will process the output in a virtual screen. This means that ANSI escape
codes, like cursor movements, and also control characters, like
carriage returns and backspaces, have the same effect on the result as they
would have on a normal terminal screen. For example the sequence
acdc\x1b[3Dbba
will result in output abba
.
Terminal emulation is taken into use by giving terminal_emulation
argument a true value (see Boolean arguments
) either in the library
initialization or with Open Connection
.
As Pyte approximates vt-style terminal, you may also want to set the
terminal type as vt100
. We also recommend that you increase the window
size, as the terminal emulation will break all lines that are longer than
the window row length.
When terminal emulation is used, the newline
and encoding
can not be
changed anymore after opening the connection.
Examples:
| Open Connection
| lolcathost | terminal_emulation=True | terminal_type=vt100 | window_size=400x100 |
As a prerequisite for using terminal emulation, you need to have Pyte installed. Due to backwards incompatible changes in Pyte, different Robot Framework versions support different Pyte versions:
- Pyte 0.6 and newer are supported by Robot Framework 3.0.3.
Latest Pyte version can be installed (or upgraded) with
pip install --upgrade pyte
. - Pyte 0.5.2 and older are supported by Robot Framework 3.0.2 and earlier.
Pyte 0.5.2 can be installed with
pip install pyte==0.5.2
.
= Logging =
All keywords that read something log the output. These keywords take the log level to use as an optional argument, and if no log level is specified they use the [#Configuration|configured] default value.
The valid log levels to use are TRACE
, DEBUG
, INFO
(default),
and WARN
. Levels below INFO
are not shown in log files by default
whereas warnings are shown more prominently.
The [http://docs.python.org/library/telnetlib.html|telnetlib module]
used by this library has a custom logging system for logging content it
sends and receives. By default these messages are written using TRACE
level, but the level is configurable with the telnetlib_log_level
option either in the library initialization, to the Open Connection
or by using the Set Telnetlib Log Level
keyword to the active
connection. Special level NONE
con be used to disable the logging
altogether.
= Time string format =
Timeouts and other times used must be given as a time string using format
like 15 seconds
or 1min 10s
. If the timeout is given as just
a number, for example, 10
or 1.5
, it is considered to be seconds.
The time string format is described in more detail in an appendix of
[http://robotframework.org/robotframework/#user-guide|Robot Framework User Guide].
= Boolean arguments =
Some keywords accept arguments that are handled as Boolean values true or
false. If such an argument is given as a string, it is considered false if
it is an empty string or equal to FALSE
, NONE
, NO
, OFF
or
0
, case-insensitively. Other strings are considered true regardless
their value, and other argument types are tested using the same
[http://docs.python.org/library/stdtypes.html#truth|rules as in Python].
True examples:
| Open Connection
| lolcathost | terminal_emulation=True | # Strings are generally true. |
| Open Connection
| lolcathost | terminal_emulation=yes | # Same as the above. |
| Open Connection
| lolcathost | terminal_emulation=${TRUE} | # Python True
is true. |
| Open Connection
| lolcathost | terminal_emulation=${42} | # Numbers other than 0 are true. |
False examples:
| Open Connection
| lolcathost | terminal_emulation=False | # String false
is false. |
| Open Connection
| lolcathost | terminal_emulation=no | # Also string no
is false. |
| Open Connection
| lolcathost | terminal_emulation=${EMPTY} | # Empty string is false. |
| Open Connection
| lolcathost | terminal_emulation=${FALSE} | # Python False
is false. |
Considering string NONE
false is new in Robot Framework 3.0.3 and
considering also OFF
and 0
false is new in Robot Framework 3.1.
Source code in src/robot/libraries/Telnet.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 |
|
__init__(timeout='3 seconds', newline='CRLF', prompt=None, prompt_is_regexp=False, encoding='UTF-8', encoding_errors='ignore', default_log_level='INFO', window_size=None, environ_user=None, terminal_emulation=False, terminal_type=None, telnetlib_log_level='TRACE', connection_timeout=None)
¶
Telnet library can be imported with optional configuration parameters.
Configuration parameters are used as default values when new
connections are opened with Open Connection
keyword. They can also be
overridden after opening the connection using the Set ...
keywords
.
See these keywords as well as Configuration
, Terminal emulation
and
Logging
sections above for more information about these parameters
and their possible values.
See Time string format
and Boolean arguments
sections for
information about using arguments accepting times and Boolean values,
respectively.
Examples (use only one of these): | = Setting = | = Value = | = Value = | = Value = | = Value = | = Comment = | | Library | Telnet | | | | # default values | | Library | Telnet | 5 seconds | | | # set only timeout | | Library | Telnet | newline=LF | encoding=ISO-8859-1 | | # set newline and encoding using named arguments | | Library | Telnet | prompt=$ | | | # set prompt | | Library | Telnet | prompt=(> |# ) | prompt_is_regexp=yes | | # set prompt as a regular expression | | Library | Telnet | terminal_emulation=True | terminal_type=vt100 | window_size=400x100 | # use terminal emulation with defined window size and terminal type | | Library | Telnet | telnetlib_log_level=NONE | | | # disable logging messages from the underlying telnetlib |
Source code in src/robot/libraries/Telnet.py
close_all_connections()
¶
Closes all open connections and empties the connection cache.
If multiple connections are opened, this keyword should be used in
a test or suite teardown to make sure that all connections are closed.
It is not an error if some of the connections have already been closed
by Close Connection
.
After this keyword, new indexes returned by Open Connection
keyword are reset to 1.
Source code in src/robot/libraries/Telnet.py
open_connection(host, alias=None, port=23, timeout=None, newline=None, prompt=None, prompt_is_regexp=False, encoding=None, encoding_errors=None, default_log_level=None, window_size=None, environ_user=None, terminal_emulation=None, terminal_type=None, telnetlib_log_level=None, connection_timeout=None)
¶
Opens a new Telnet connection to the given host and port.
The timeout
, newline
, prompt
, prompt_is_regexp
,
encoding
, default_log_level
, window_size
, environ_user
,
terminal_emulation
, terminal_type
and telnetlib_log_level
arguments get default values when the library is [#Importing|imported].
Setting them here overrides those values for the opened connection.
See Configuration
, Terminal emulation
and Logging
sections for
more information about these parameters and their possible values.
Possible already opened connections are cached and it is possible to
switch back to them using Switch Connection
keyword. It is possible to
switch either using explicitly given alias
or using index returned
by this keyword. Indexing starts from 1 and is reset back to it by
Close All Connections
keyword.
Source code in src/robot/libraries/Telnet.py
switch_connection(index_or_alias)
¶
Switches between active connections using an index or an alias.
Aliases can be given to Open Connection
keyword which also always
returns the connection index.
This keyword returns the index of previous active connection.
Example:
| Open Connection
| myhost.net | | |
| Login
| john | secret | |
| Write
| some command | | |
| Open Connection
| yourhost.com | 2nd conn | |
| Login
| root | password | |
| Write
| another cmd | | |
| ${old index}= | Switch Connection
| 1 | # index |
| Write
| something | | |
| Switch Connection
| 2nd conn | | # alias |
| Write
| whatever | | |
| Switch Connection
| ${old index} | | # back to original |
| [Teardown] | Close All Connections
| | |
The example above expects that there were no other open
connections when opening the first one, because it used index
1
when switching to the connection later. If you are not
sure about that, you can store the index into a variable as
shown below.
| ${index} = | Open Connection
| myhost.net |
| Do Something
| | |
| Switch Connection
| ${index} | |
Source code in src/robot/libraries/Telnet.py
TelnetConnection
¶
Bases: Telnet
Source code in src/robot/libraries/Telnet.py
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 |
|
close_connection(loglevel=None)
¶
Closes the current Telnet connection.
Remaining output in the connection is read, logged, and returned. It is not an error to close an already closed connection.
Use Close All Connections
if you want to make sure all opened
connections are closed.
See Logging
section for more information about log levels.
Source code in src/robot/libraries/Telnet.py
execute_command(command, loglevel=None, strip_prompt=False)
¶
Executes the given command
and reads, logs, and returns everything until the prompt.
This keyword requires the prompt to be [#Configuration|configured]
either in importing
or with Open Connection
or Set Prompt
keyword.
This is a convenience keyword that uses Write
and Read Until Prompt
internally. Following two examples are thus functionally identical:
| ${out} = | Execute Command
| pwd |
| Write
| pwd |
| ${out} = | Read Until Prompt
|
See Logging
section for more information about log levels and Read
Until Prompt
for more information about the strip_prompt
parameter.
Source code in src/robot/libraries/Telnet.py
login(username, password, login_prompt='login: ', password_prompt='Password: ', login_timeout='1 second', login_incorrect='Login incorrect')
¶
Logs in to the Telnet server with the given user information.
This keyword reads from the connection until the login_prompt
is
encountered and then types the given username
. Then it reads until
the password_prompt
and types the given password
. In both cases
a newline is appended automatically and the connection specific
timeout used when waiting for outputs.
How logging status is verified depends on whether a prompt is set for this connection or not:
1) If the prompt is set, this keyword reads the output until the prompt
is found using the normal timeout. If no prompt is found, login is
considered failed and also this keyword fails. Note that in this case
both login_timeout
and login_incorrect
arguments are ignored.
2) If the prompt is not set, this keywords sleeps until login_timeout
and then reads all the output available on the connection. If the
output contains login_incorrect
text, login is considered failed
and also this keyword fails.
See Configuration
section for more information about setting
newline, timeout, and prompt.
Source code in src/robot/libraries/Telnet.py
read(loglevel=None)
¶
Reads everything that is currently available in the output.
Read output is both returned and logged. See Logging
section for more
information about log levels.
Source code in src/robot/libraries/Telnet.py
read_until(expected, loglevel=None)
¶
Reads output until expected
text is encountered.
Text up to and including the match is returned and logged. If no match is found, this keyword fails. How much to wait for the output depends on the [#Configuration|configured timeout].
See Logging
section for more information about log levels. Use
Read Until Regexp
if more complex matching is needed.
Source code in src/robot/libraries/Telnet.py
read_until_prompt(loglevel=None, strip_prompt=False)
¶
Reads output until the prompt is encountered.
This keyword requires the prompt to be [#Configuration|configured]
either in importing
or with Open Connection
or Set Prompt
keyword.
By default, text up to and including the prompt is returned and logged. If no prompt is found, this keyword fails. How much to wait for the output depends on the [#Configuration|configured timeout].
If you want to exclude the prompt from the returned output, set
strip_prompt
to a true value (see Boolean arguments
). If your
prompt is a regular expression, make sure that the expression spans the
whole prompt, because only the part of the output that matches the
regular expression is stripped away.
See Logging
section for more information about log levels.
Source code in src/robot/libraries/Telnet.py
read_until_regexp(*expected)
¶
Reads output until any of the expected
regular expressions match.
This keyword accepts any number of regular expressions patterns or compiled Python regular expression objects as arguments. Text up to and including the first match to any of the regular expressions is returned and logged. If no match is found, this keyword fails. How much to wait for the output depends on the [#Configuration|configured timeout].
If the last given argument is a [#Logging|valid log level], it is used
as loglevel
similarly as with Read Until
keyword.
See the documentation of [http://docs.python.org/library/re.html|Python re module] for more information about the supported regular expression syntax. Notice that possible backslashes need to be escaped in Robot Framework data.
Examples:
| Read Until Regexp
| (#|$) |
| Read Until Regexp
| first_regexp | second_regexp |
| Read Until Regexp
| \d{4}-\d{2}-\d{2} | DEBUG |
Source code in src/robot/libraries/Telnet.py
set_default_log_level(level)
¶
Sets the default log level used for logging
in the current connection.
The old default log level is returned and can be used to restore the log level later.
See Configuration
section for more information about global and
connection specific configuration.
Source code in src/robot/libraries/Telnet.py
set_encoding(encoding=None, errors=None)
¶
Sets the encoding to use for writing and reading
in the current connection.
The given encoding
specifies the encoding to use when written/read
text is encoded/decoded, and errors
specifies the error handler to
use if encoding/decoding fails. Either of these can be omitted and in
that case the old value is not affected. Use string NONE
to disable
encoding altogether.
See Configuration
section for more information about encoding and
error handlers, as well as global and connection specific configuration
in general.
The old values are returned and can be used to restore the encoding
and the error handler later. See Set Prompt
for a similar example.
If terminal emulation is used, the encoding can not be changed on an open connection.
Source code in src/robot/libraries/Telnet.py
set_newline(newline)
¶
Sets the newline used by Write
keyword in the current connection.
The old newline is returned and can be used to restore the newline later.
See Set Timeout
for a similar example.
If terminal emulation is used, the newline can not be changed on an open connection.
See Configuration
section for more information about global and
connection specific configuration.
Source code in src/robot/libraries/Telnet.py
set_prompt(prompt, prompt_is_regexp=False)
¶
Sets the prompt used by Read Until Prompt
and Login
in the current connection.
If prompt_is_regexp
is given a true value (see Boolean arguments
),
the given prompt
is considered to be a regular expression.
The old prompt is returned and can be used to restore the prompt later.
Example:
| ${prompt} | ${regexp} = | Set Prompt
| $ |
| Do Something
|
| Set Prompt
| ${prompt} | ${regexp} |
See the documentation of [http://docs.python.org/library/re.html|Python re module] for more information about the supported regular expression syntax. Notice that possible backslashes need to be escaped in Robot Framework data.
See Configuration
section for more information about global and
connection specific configuration.
Source code in src/robot/libraries/Telnet.py
set_telnetlib_log_level(level)
¶
Sets the log level used for logging
in the underlying telnetlib
.
Note that telnetlib
can be very noisy thus using the level NONE
can shutdown the messages generated by this library.
Source code in src/robot/libraries/Telnet.py
set_timeout(timeout)
¶
Sets the timeout used for waiting output in the current connection.
Read operations that expect some output to appear (Read Until
, Read
Until Regexp
, Read Until Prompt
, Login
) use this timeout and fail
if the expected output does not appear before this timeout expires.
The timeout
must be given in time string format
. The old timeout
is returned and can be used to restore the timeout later.
Example:
| ${old} = | Set Timeout
| 2 minute 30 seconds |
| Do Something
|
| Set Timeout
| ${old} |
See Configuration
section for more information about global and
connection specific configuration.
Source code in src/robot/libraries/Telnet.py
write(text, loglevel=None)
¶
Writes the given text plus a newline into the connection.
The newline character sequence to use can be [#Configuration|configured]
both globally and per connection basis. The default value is CRLF
.
This keyword consumes the written text, until the added newline, from
the output and logs and returns it. The given text itself must not
contain newlines. Use Write Bare
instead if either of these features
causes a problem.
Note: This keyword does not return the possible output of the executed
command. To get the output, one of the Read ...
keywords
must be
used. See Writing and reading
section for more details.
See Logging
section for more information about log levels.
Source code in src/robot/libraries/Telnet.py
write_bare(text)
¶
Writes the given text, and nothing else, into the connection.
This keyword does not append a newline nor consume the written text.
Use Write
if these features are needed.
Source code in src/robot/libraries/Telnet.py
write_control_character(character)
¶
Writes the given control character into the connection.
The control character is prepended with an IAC (interpret as command) character.
The following control character names are supported: BRK, IP, AO, AYT, EC, EL, NOP. Additionally, you can use arbitrary numbers to send any control character.
Example: | Write Control Character | BRK | # Send Break command | | Write Control Character | 241 | # Send No operation command |
Source code in src/robot/libraries/Telnet.py
write_until_expected_output(text, expected, timeout, retry_interval, loglevel=None)
¶
Writes the given text
repeatedly, until expected
appears in the output.
text
is written without appending a newline and it is consumed from
the output before trying to find expected
. If expected
does not
appear in the output within timeout
, this keyword fails.
retry_interval
defines the time to wait expected
to appear before
writing the text
again. Consuming the written text
is subject to
the normal [#Configuration|configured timeout].
Both timeout
and retry_interval
must be given in time string
format
. See Logging
section for more information about log levels.
Example: | Write Until Expected Output | ps -ef| grep myprocess\r\n | myprocess | | ... | 5 s | 0.5 s |
The above example writes command ps -ef | grep myprocess\r\n
until
myprocess
appears in the output. The command is written every 0.5
seconds and the keyword fails if myprocess
does not appear in
the output in 5 seconds.