同时使用"GetPreLoginBanner";关键字我得到以下错误
*** Settings ***
Library SSHLibrary
Testcase
${RemoteServer}= openconnection 127.0.0.1 port=2424
Login ubuntu ubuntu
${banner} = GetPreLoginBanner
Log ${banner}
错误:
FAIL : AttributeError: 'NoneType' object has no attribute 'decode'
Traceback (most recent call last):
File "c:python27libsite-packagesSSHLibrarylibrary.py", line 1005, in get_pre_login_banner
return banner.decode(self.DEFAULT_ENCODING)
Ending test: Hits.Builtkeys.SSHLibrary.LoginBanner
有人能帮我解决这个错误吗。
这看起来像是SSLLibrary中的一个错误。假设banner
是某种字符串,但在这种特定情况下,它是None
。