-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcf.py
43 lines (33 loc) · 1.65 KB
/
cf.py
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
32
33
34
35
36
37
38
39
40
41
42
import os
if (os.name=='posix'):
SCREEN_DIR = os.path.join(os.getcwd(), 'screenshot/')
TEST_DIR = os.path.join(os.getcwd(), 'test/')
RELABOR_DIR = os.path.join(os.getcwd(), 'rielaborazioni/')
STATE_JSON = os.path.join(os.getcwd(), 'program_state.json')
PATH_INSTALLAZIONE_TESSERACT = ('/usr/local/bin/tesseract')
CHROME = os.path.join('Applications','Google Chrome.app','Contents','MacOS','Google Chrome')
else:
SCREEN_DIR = os.path.join(os.getcwd(), 'screenshot')
TEST_DIR = os.path.join(os.getcwd(), 'test')
RELABOR_DIR = os.path.join(os.getcwd(), 'rielaborazioni')
STATE_JSON = os.path.join(os.getcwd(), 'program_state.json')
PATH_INSTALLAZIONE_TESSERACT = r'C:\Program Files\Tesseract-OCR\tesseract.exe'
CHROME = os.path.join('C:\\', 'Program Files (x86)', 'Google', 'Chrome', 'Application', 'chrome.exe')
WEBDRIVER_PATH = os.path.join('C:\\', 'Program Files (x86)', 'ChromeDriverForSelenium', 'chromedriver.exe')
USER_AGENT = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'
}
# Moltiplicatore per Resize dell'immagine
mult = 5
# Dimensione dello screen grab
x_finale = 500
y_finale = 500
#Dimensione dello screen grab x Domande
y_finale_domande = 140
#Dimensione dello screen grab x Risposte
y_iniziale_risposte = 165
y_finale_risposte = 320
#Dimensioni e posizione della finestra del browser che si apre
coordinate_browser = (1125, 0) #si apre in mezzo per lasciare al centro il quiz, il valore sul pc Milanese è 800,0
dimensioni_browser = (795, 1080) # prima era (850, 1080)
coordinate_drivers_browser = [(550, 0), (-120, 0)]