我正在自动化 python 中的 pressKeyButton()。因为以下是代码
from AppiumLibrary import AppiumLibrary
def PressKeyboardButton(self, buttonToPress):
self._current_application().execute_script("var vKeyboard = target.frontMostApp().keyboard(); vKeyboard.buttons()['" + buttonToPress + "'].tap();");
执行后,我得到以下异常:
AttributeError: 'unicode' object has no attribute '_current_application'
任何人都可以建议我解决方案。