python代码:
self.driver.get("http://www.baidu.com") input = self.driver.find_element_by_id("kw") search = self.driver.find_element_by_id("su") input.send_keys("test") action = TouchActions(self.driver) action.tap(search) action.perform() action.scroll_from_element(input, 0, 10000).perform() next = self.driver.find_element_by_link_text("下一页 >") next.click() 总结ActionChains和TouchAction实现了鼠标和键盘的模拟输入,更详细的介绍可以参考官方文档 https://selenium-python.readthedocs.io/api.html。
--THE END--文章标题:Selenium ActionChains、TouchAction方法
本文作者:hiyo
本文链接:https://hiyong.gitee.io/posts/selenium-actionchains-touchaction/
欢迎关注公众号:「测试开发小记」及时接收最新技术文章!