selenium控制手动打开的chrome游览器

首先编写一个bat脚本,打开游览器(我将chrome配置到环境变量当中了。在path中添加chrome游览器的路径)
将下面这段复制到bat中
chrome.exe --remote-debugging-port=9222 --user-data-dir="C:\selenum\AutomationProfile"
然后编写一下代码

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver import ActionChains
import time
from selenium.webdriver.common.keys import Keys

chrome_options = Options()
chrome_options.add_experimental_option("debuggerAddress", "127.0.0.1:9222")
chrome_driver = "D:\chromedriver\chromedriver.exe"
driver = webdriver.Chrome(chrome_driver, chrome_options=chrome_options)
print(driver.title)


#我这是防止掉线的,我们使用的chrome云桌面为了防止掉线自动刷新。
elenment =driver.find_element_by_xpath("//div[@id='MousePointerDiv']")
while True:
    time.sleep(2)
    ActionChains(driver).context_click(elenment).perform()
    time.sleep(2)
    ActionChains(driver).move_to_element_with_offset(elenment, 963,544).send_keys(Keys.ENTER).perform()
    time.sleep(400)


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值