摘要: """ 反反爬 -- driver.get(网页) -- 人工登录后关闭程序 -- driver.get(网页) """ # 1. 普通浏览器:不能记录登录信息,容易触发反爬机制 # from selenium.webdriver import Chrome # # with Chrome() as 阅读全文
posted @ 2022-11-29 22:37 跃动指尖 阅读(2419) 评论(0) 推荐(1)
摘要: from selenium.webdriver import Chrome, ChromeOptions from selenium.webdriver.common.by import By import time option = ChromeOptions() option.add_argum 阅读全文
posted @ 2022-11-29 22:24 跃动指尖 阅读(99) 评论(0) 推荐(0)
摘要: from selenium.webdriver import Chrome, ChromeOptions from selenium.webdriver.common.by import By import time # 不打开浏览器页面 option = ChromeOptions() optio 阅读全文
posted @ 2022-11-29 22:21 跃动指尖 阅读(61) 评论(0) 推荐(0)
摘要: from selenium.webdriver import Chrome from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys import time with Chr 阅读全文
posted @ 2022-11-29 22:11 跃动指尖 阅读(161) 评论(0) 推荐(0)
摘要: from selenium.webdriver import Chrome from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys import time with Chr 阅读全文
posted @ 2022-11-29 22:06 跃动指尖 阅读(41) 评论(0) 推荐(0)