created Version 1.2

This commit is contained in:
romanschenk37 2022-03-11 21:39:01 +01:00
parent ccd2c49e39
commit e0f4d585df
1 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,7 @@ from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.common.by import By from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys from selenium.webdriver.common.keys import Keys
from PIL import Image from PIL import Image
import os
from tkinter import filedialog from tkinter import filedialog
import time import time
@ -32,6 +33,8 @@ def search_adresses(adress_list, filename_adresslist, driver):
global stopThread global stopThread
global columnIndexes global columnIndexes
if(not os.path.exists("screenshots")):
os.makedirs("screenshots", exist_ok=False)
for i in range(len(adress_list)): for i in range(len(adress_list)):
line = adress_list[i] line = adress_list[i]