我在Python中使用RobotFramework在macOS Chrome浏览器上自动化应用程序。我需要发送多个按键来向右滚动我的网格,但没有运气。
我尝试使用.sendKeys()
:
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.action_chains import ActionChains
ActionChains(self._current_browser()).send_keys(Keys.ARROW_RIGHT).perform()
我已经读过sendKeys()
无法使用macOS。有什么可以替代?