【发布时间】:2015-12-06 17:11:09
【问题描述】:
我无法在 Robot Framework 中使用 Selenium2Library。它抛出以下错误:
C:\RFW>jybot.bat SW_Installation.robot
[ ERROR ] Error in file 'C:\RFW\SW_Installation.robot': Importing test library '
Selenium2Library' failed: ImportError: No module named Selenium2Library
Traceback (most recent call last):
None
PYTHONPATH:
C:\RFW\SWInstall.sikuli
C:\RFW\robot\libraries
C:\RFW
C:\RFW\sikulixapi.jar\Lib
C:\RFW\Lib
C:\RFW\jython-standalone-2.7-b3.jar\Lib
__classpath__
__pyclasspath__/
.
CLASSPATH:
C:\RFW\jython-standalone-2.7-b3.jar
C:\RFW\sikulixapi.jar
我的机器人文件是:
***Settings***
Library Selenium2Library
Library Install.Installation WITH NAME Installation
*** Variables ***
${NONE} none
***Test Cases***
testcase1
ClickInstallBatFile
sleep 90
Click Button 885,523
我尝试在 python 交互式 shell 中导入库。它按预期工作,如下所示:
Microsoft Windows [Version 6.1.7600]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\test>python
ActivePython 2.7.8.10 (ActiveState Software Inc.) based on
Python 2.7.8 (default, Jul 2 2014, 19:50:44) [MSC v.1500 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> import Selenium2Library
>>> import SeleniumLibrary
>>>
谁能给点线索?
谢谢, 库马尔
【问题讨论】:
-
是的,你可以在python中导入库。但是您使用的 jybot 并不关心您的 python 库。
标签: python robotframework