目前不知道什么原因当标签页没有在前端显示时drissionpage驱动的midjourney生产器可能会陷入打不开且不刷新的困局从而停摆,我看了下可以用drissionpage操纵标签页定时前端显示,对于夜间自动可以打开这个程序。
切换标签页1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
from DrissionPage import ChromiumPage, ChromiumOptions import time
do1 = ChromiumOptions().set_paths(local_port=9111, user_data_path=r'C:/Users/A/AppData/Local/Google/Chrome/User Data') tab = ChromiumPage(addr_or_opts=do1)
chuya_tab = tab.get_tab(url='Welcome to nginx!') kwf_tab = tab.get_tab(url='discord-d-com-s-mj3.aiwentu.net')
switch_interval = 120
try: while True: chuya_tab.set.activate() print("Switched to Tab chuya_tab") time.sleep(switch_interval)
kwf_tab.set.activate() print("Switched to Tab kwf_tab") time.sleep(switch_interval)
except KeyboardInterrupt: print("切换结束")
|
阅读更多