Ошибка Python Selenium: неверный идентификатор сеансаPython

Программы на Python
Anonymous
Ошибка Python Selenium: неверный идентификатор сеанса

Сообщение Anonymous »

Я пытался запустить веб-драйвер -> случайное время сна -> закрыть веб-драйвер
Но получилось «неверный идентификатор сеанса»
Кто-нибудь знает, как решить эту проблему ?, плз
это следующий код
from tkinter import *
from tkinter import messagebox
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys
import pyautogui
import chromedriver_autoinstaller
import datetime
import time
import pyperclip
import csv, os
import sys
import random

mobile_emulation = { "deviceName": "iPhone 6/7/8" }

chrome_ver = chromedriver_autoinstaller.get_chrome_version().split('.')[0]
chromedriver_path = f'./{chrome_ver}/chromedriver.exe'

options = webdriver.ChromeOptions()
options.add_argument("start-maximized")
options.add_argument("disable-infobars")
options.add_argument("--disable-extensions")
options.add_experimental_option('excludeSwitches', ['enable-logging'])
options.add_experimental_option("mobileEmulation", mobile_emulation)

driver = webdriver.Chrome(chromedriver_path, chrome_options = options)

url = 'https://google.com/'

driver.get(url)

rndNum = random.randint(350,700)

now = time.localtime()
nowTime = str(now.tm_hour)+'HOUR'+str(now.tm_min)+'MIN'+str(now.tm_sec)+'SEC'

print('------------------> RANDOM TIME : ',rndNum//60,'MIN ', rndNum%60, 'SEC')
print("DRIVER FINISH START", nowTime)

time.sleep(rndNum)

driver.close()

driver.implicitly_wait(5)

time.sleep(1)

driver.switch_to.window(driver.window_handles[0])
driver.implicitly_wait(5)

isSearch = 1
now = time.localtime()
nowTime = str(now.tm_hour)+'HOUR'+str(now.tm_min)+'MIN'+str(now.tm_sec)+'SEC'

print("DRIVER FINISH END", nowTime)

и это ошибка
Traceback (most recent call last):

File "C:/Users/Desktop/testDriver.py", line 47, in
driver.implicitly_wait(5)
File "C:\Users\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 911, in implicitly_wait
self.execute(Command.SET_TIMEOUTS, {
File "C:\Users\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "C:\Users\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.InvalidSessionIdException: Message: invalid session id


Подробнее здесь: https://stackoverflow.com/questions/707 ... session-id

Вернуться в «Python»