-
Notifications
You must be signed in to change notification settings - Fork 0
/
DriverConfig.py
34 lines (27 loc) · 945 Bytes
/
DriverConfig.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
import platform
from selenium.webdriver.chrome.options import Options
class DriverConfig:
@staticmethod
def get_system_driver():
"""
Checa o tipo de sistema e retorna o path do arquivo correspondente ou uma string vazia caso o sistema não seja reconhecido.
:return: String
"""
driver_path = ""
if platform.system() == "Windows":
driver_path = r"chromedriver.exe"
elif platform.system() == "Linux":
driver_path = r"chromedriver"
elif platform.system() == "Darwin":
driver_path = r"chromedriver_mac"
return driver_path
@staticmethod
def get_options():
"""
Retorna configurações padrões das opções do driver
:return: Options
"""
options = Options()
# options.add_argument("--headless")
options.add_argument("window-size=1920,1080")
return options