still dont know
This commit is contained in:
parent
d946298a38
commit
f2d08e9137
4
V5.py
4
V5.py
|
@ -412,7 +412,6 @@ def login_part_2(ldriver, cookies = False):
|
||||||
if ('Abuse' in ldriver.current_url) :
|
if ('Abuse' in ldriver.current_url) :
|
||||||
raise Banned()
|
raise Banned()
|
||||||
if ('identity' in ldriver.current_url) :
|
if ('identity' in ldriver.current_url) :
|
||||||
custom_sleep(100)
|
|
||||||
raise Identity()
|
raise Identity()
|
||||||
if ('notice' in ldriver.current_url) :
|
if ('notice' in ldriver.current_url) :
|
||||||
ldriver.find_element(By.ID, "id__0").click()
|
ldriver.find_element(By.ID, "id__0").click()
|
||||||
|
@ -681,6 +680,9 @@ def daily_routine(custom = False):
|
||||||
except Banned :
|
except Banned :
|
||||||
log_error("This account is locked. Fix that. (-U ?)", driver)
|
log_error("This account is locked. Fix that. (-U ?)", driver)
|
||||||
return()
|
return()
|
||||||
|
except Identity :
|
||||||
|
log_error("This account has an issue. Fix that.", driver)
|
||||||
|
return()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
all_cards()
|
all_cards()
|
||||||
|
|
Loading…
Reference in New Issue