fiexed invisible error
This commit is contained in:
parent
08c069ca1e
commit
fe772048de
6
V4.py
6
V4.py
|
@ -85,7 +85,7 @@ def claim_amazon():
|
||||||
LogError(f'problème dans la recuperation : {str(e)}', driver, _mail)
|
LogError(f'problème dans la recuperation : {str(e)}', driver, _mail)
|
||||||
|
|
||||||
|
|
||||||
def setup_proxy(ip, port, socks=False) :
|
def setup_proxy(ip, port, options, socks=False) :
|
||||||
PROXY = f"{ip}:{port}"
|
PROXY = f"{ip}:{port}"
|
||||||
if socks :
|
if socks :
|
||||||
options.set_preference('network.proxy.type', 1)
|
options.set_preference('network.proxy.type', 1)
|
||||||
|
@ -101,8 +101,6 @@ def setup_proxy(ip, port, socks=False) :
|
||||||
|
|
||||||
|
|
||||||
def FirefoxDriver(mobile=False, Headless=Headless):
|
def FirefoxDriver(mobile=False, Headless=Headless):
|
||||||
if proxy_enabled :
|
|
||||||
setup_proxy(proxy_address,proxy_port)
|
|
||||||
PC_USER_AGENT = (
|
PC_USER_AGENT = (
|
||||||
"Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
|
||||||
"AppleWebKit/537.36 (KHTML, like Gecko)"
|
"AppleWebKit/537.36 (KHTML, like Gecko)"
|
||||||
|
@ -115,6 +113,8 @@ def FirefoxDriver(mobile=False, Headless=Headless):
|
||||||
)
|
)
|
||||||
|
|
||||||
options = Options()
|
options = Options()
|
||||||
|
if proxy_enabled :
|
||||||
|
setup_proxy(proxy_address,proxy_port, options)
|
||||||
options.set_preference("browser.link.open_newwindow", 3)
|
options.set_preference("browser.link.open_newwindow", 3)
|
||||||
if FAST :
|
if FAST :
|
||||||
options.set_preference("permissions.default.image", 2) #disable image loading. May add this without the fast option soon
|
options.set_preference("permissions.default.image", 2) #disable image loading. May add this without the fast option soon
|
||||||
|
|
Loading…
Reference in New Issue