🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
有时候在页面中的操作可能要有很多步,那么这时候可以使用鼠标行为链类ActionChains来完成。比如现在要将鼠标移动到某个元素上并执行点击事件。 ```python actions = ActionChains(driver) actions.move_to_element(inputTag) actions.send_keys_to_element(inputTag,'python') actions.move_to_element(submitTag) actions.context_click() actions.click(submitTag) actions.perform() ``` 更多鼠标操作: ● `click_ and_ hold(element)`: 点击但不松开鼠标。 ● `context_ click(element)`: 右键点击。 ● `double_ click(element)`: 双击。 更多⽅法请参考:http://selenium-python.readthedocs.io/api.html