本文整理汇总了Python中robot.libraries.BuiltIn.BuiltIn.read_until_prompt方法的典型用法代码示例。如果您正苦于以下问题:Python BuiltIn.read_until_prompt方法的具体用法?Python BuiltIn.read_until_prompt怎么用?Python BuiltIn.read_until_prompt使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类robot.libraries.BuiltIn.BuiltIn
的用法示例。
在下文中一共展示了BuiltIn.read_until_prompt方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: login
# 需要导入模块: from robot.libraries.BuiltIn import BuiltIn [as 别名]
# 或者: from robot.libraries.BuiltIn.BuiltIn import read_until_prompt [as 别名]
def login(self, username, password=None, login_prompt='login: ',
password_prompt='Password: ', login_timeout='1 second',
login_incorrect='Login incorrect'):
"""
This is a hack of the robotframework telnet library's login function
because that library does not support login without password.
Just one test is needed inside _submit_credentials
https://github.com/robotframework/robotframework/blob/master/src/robot/libraries/Telnet.py
to test if password is None and There would be no need for this code.
I did not take the time to submit a pull request to robotframework.
"""
connection = BuiltIn().get_library_instance('Telnet')
if password:
out = connection.login(username, password,
login_prompt=login_prompt,
password_prompt=password_prompt,
login_timeout=login_timeout,
login_incorrect=login_incorrect)
return out
output = connection.read_until(login_prompt, 'TRACE')
#_newline is private, no other way to get it than to set it once and set it back
new_line = connection.set_newline('\n')
connection.set_newline(new_line)
connection.write_bare(username + new_line)
output = connection.read_until_prompt()
return output