无法在Robot Framework中使用Selenium2Library。 ImportError:没有名为Selenium2Library的模块错误

时间:2015-09-10 12:07:40

标签: python robotframework

我无法在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
>>>

有人可以提供任何线索吗?

谢谢, 库马尔

0 个答案:

没有答案