我正在努力安装机器人框架 .

我已经下载并安装了新的Python 2.7.14 . 我已将它和脚本添加到PATH . 接下来我用pip下载了机器人框架(pip install robotframework) . 接下来我下载并安装了selenium库(pip install robotframework-seleniumlibrary) . 接下来,我已经为PyCharm下载并安装了Intellibot插件 .

现在我看到* .robot文件与Intellibot(机器人图标)相关联但是

在我写完这个简单的“测试”之后:


*** Settings ***
Documentation  simple test
Library  SeleniumLibrary

*** Test Cases ***
This is some test case
    Open Browser  http://google.pl chrome
    Close Browser

Settings 中的SeleniumLibrary未标记为错误 . 我觉得那里的一切都很好 . "Open Browser"和"Close Browser"命令没有自动完成功能 . 两者都带有红色下划线和信息"Keyword definition not found" . 运行此测试后,我收到错误:"SessionNotCreatedException: Message: Unable to find a matching set of capabilities"(浏览器根本不打开) .

这里需要一些建议......