selenium多开chrome总是要登录用户
selenium多开chrome添加profile_directory参数后能多开了但是总是要点击登陆一下怎么去掉这个登录的过程from selenium.webdriver import Chromefrom selenium.webdriver import ChromeOptions
import engine_url
USER_DATA = '--user-data-dir=.\Plug-In\\Google\\User Data\\profile '
PERSONAL_INFORMATION = '--profile-directory=.\Plug-In\\Google\\User Data\\profile '
def open_explorer(count,url):
while 1:
try:
exec(f'chrome_option{count} = ChromeOptions()')
exec(f'chrome_option{count}.binary_location = \'.\\plug-in\\Google\\Chrome\\Application\\chrome.exe\'')
exec(f'chrome_option{count}.add_argument(USER_DATA+str(count))')
exec(f'chrome_option{count}.add_argument(PERSONAL_INFORMATION+str(count)+\'Default\')')
exec(f'chrome_driver{count} = Chrome(options=chrome_option{count},executable_path=\'.\\plug-in\\chromedriver.exe\')')
exec(f'chrome_driver{count}.get(url)')
break
except:
count += 1
def main(args,sign):
keyword = args.get('keyword')
count = 1
if keyword:
for each in args['engine']:
open_explorer(count,engine_url.search + keyword)
count += 1
# 使用主页网站
else:
for each in args['engine']:
open_explorer(count,engine_url.home_page)
count += 1
return f'成功进行了搜索,搜索的关键字为{args["keyword"]}' {:7_146:} 问题已经解决,谁先来谁就是最佳。 nahongyan1997 发表于 2020-7-22 15:44
问题已经解决,谁先来谁就是最佳。
{:10_277:} 啊这{:10_277:} 来个cookie吧 能分享一下是怎么解决的吗?我这边想解决一下selenium打开的浏览器能继承正常打开的浏览器的访问记录,账号密码信息过来,你的解决办法是不是对我这个有帮助呢?
页:
[1]