没有遇到错误,并且脚本已作为PASS返回,但pyautogui无法正常工作(使用PyCharm的机器人框架)

时间:2018-08-10 02:50:01

标签: pycharm robotframework pyautogui

我在使用pyautogui时遇到问题。

Library             Selenium2Library
Library             String
Library             pyautogui

*** Test Cases ***
Scenario: Press enter key
    Press  'enter'


C:\Tools\Python27\Scripts\pybot.bat test.robot
==============================================================================
Scenario: Press enter key                                             | PASS |
------------------------------------------------------------------------------

它以PASS的形式返回,但没有任何反应。它没有执行 press 命令。需要帮助。

1 个答案:

答案 0 :(得分:0)

如果要发送 ENTER 键。请尝试以下代码

 Press Key     ${somelocator}      \\13

Here some document how to use Press Key