我无法在机器人框架中使用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中导入Library。其工作情况如下所示:
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
>>>谁能给点线索吗?
谢谢,库马尔
发布于 2015-09-10 13:50:26
您似乎已经为python安装了Selenium2Library,但是您正在使用jython (通过jybot)来运行测试。
你至少有三个解决方案:
发布于 2015-09-10 12:39:19
https://stackoverflow.com/questions/32501463
复制相似问题