我正在使用机器人框架& pycharm& appium。 Appium运行良好,但我试图在pycharm上运行robotframework, 没有登录appium并返回此错误=>
打开我的申请
[WARN]关键字“捕获页面屏幕截图”无法在失败时运行:没有应用程序打开
|失败|
WebDriverException:消息:
这是我的代码
First.robot
*** Settings ***
Library AppiumLibrary
Suite Setup
*** Variables ***
${REMOTE_URL} http://127.0.0.1:4723/wd/hub
${PLATFORM_NAME} iOS
${PLATFORM_VERSION} 9.3
${DEVICE_NAME} iPhone 6
${APP_LOCATION} /Users/xxxx.yyy/ios-test-automation-with-gauge-new/ipa/GetX.app
*** Keywords ***
Open App
Open Application ${REMOTE_URL} platformName=${PLATFORM_NAME} platformVersion=${PLATFORM_VERSION} deviceName=${DEVICE_NAME} app=${APP_LOCATION}
Close All Apps
Close All Applications
Second.robot
*** Settings ***
Resource second.robot
*** Test Cases ***
Open My Application
Open App
怎么了?