remove trailing spaces + added some comments + dealed with error with some popus + some little things

This commit is contained in:
piair 2022-05-26 07:47:29 +02:00
parent 5f554cc9b2
commit df0ea09662
1 changed files with 23 additions and 13 deletions

16
V4.py
View File

@ -274,6 +274,9 @@ def Close(fenetre, SwitchTo=0):
driver.switch_to.window(driver.window_handles[SwitchTo])
"""
Deal with RGPD popup as well as some random popup like 'are you satisfied' one
"""
def RGPD():
try:
driver.find_element(By.ID, "bnp_btn_accept").click()
@ -283,12 +286,19 @@ def RGPD():
driver.find_element(By.ID, "bnp_hfly_cta2").click()
except:
pass
try :
driver.find_element(By.id, "bnp_hfly_close").click() #are you satisfied popup
except :
pass
def PlayQuiz2(override=None):
"""
PlayQuiz2([int : override]) make the quizz with 2 choice each time. They usually have 10 questions.
override is the number of question, by default, it's 10. Can be usefull in some case, where the programm crashes before finishing the quizz
"""
def PlayQuiz2(override=10):
printf("debut de PlayQuiz2")
if not override:
override = 10
for j in range(override):
try:
RGPD()