关于appium+Python的自动化脚本报错的解决办法

关于appium+Python的自动化脚本报错的解决办法

报错信息:

E:/PythonProject/appTest.py:61: DeprecationWarning: desired_capabilities has been deprecated, please pass in an Options object with options kwarg
  driver = webdriver.Remote(command_executor='http://localhost:4723/wd/hub',desired_capabilities=desired_caps)

代码如下:

import time
from selenium.webdriver.common.by import By
from selenium import webdriver
from appium.webdriver.common.touch_action import TouchAction

原因:

是从selenium导入了webdriver,正确应该从appium导入webdriver

解决方法:

将from selenium import webdriver修改为from appium import webdriver

你可能感兴趣的:(python,自动化)