remove Python3.10 functions

This commit is contained in:
piair 2022-02-17 10:39:21 +01:00
parent b2483393cf
commit 216c036441

9
V4.py
View File

@ -567,15 +567,14 @@ def TryPlay(nom ="inconnu"):
RGPD() RGPD()
def play(number, override = None) : def play(number, override = None) :
match number : if number == 8 or number == 9 :
case 9 | 8 :
try : try :
print(f'Quiz 8 détécté sur la page {nom}') print(f'Quiz 8 détécté sur la page {nom}')
RGPD() RGPD()
PlayQuiz8(override) PlayQuiz8(override)
except Exception as e : except Exception as e :
printf(f'echec de PlayQuiz 8. Aborted {e}') printf(f'echec de PlayQuiz 8. Aborted {e}')
case 5 | 4 : elif number == 5 or number == 4 :
try : try :
print(f'Quiz 4 détécté sur la page {nom}') print(f'Quiz 4 détécté sur la page {nom}')
RGPD() RGPD()
@ -583,14 +582,14 @@ def TryPlay(nom ="inconnu"):
print('Quiz 4 reussit') print('Quiz 4 reussit')
except Exception as e : except Exception as e :
printf(f'echec de PlayQuiz 4. Aborted {e}') printf(f'echec de PlayQuiz 4. Aborted {e}')
case 3 | 2 : elif number == 3 or number == 2 :
try : try :
RGPD() RGPD()
print(f'Quiz 2 détécté sur la page {nom}') print(f'Quiz 2 détécté sur la page {nom}')
PlayQuiz2(override) PlayQuiz2(override)
except Exception as e : except Exception as e :
printf(f'echec de PlayQuiz 2. Aborted {e}') printf(f'echec de PlayQuiz 2. Aborted {e}')
case _ : else :
LogError('probleme dans la carte : il y a un bouton play et aucun quiz') LogError('probleme dans la carte : il y a un bouton play et aucun quiz')
try : try :
driver.find_element(By.ID, 'rqStartQuiz').click() #start the quiz driver.find_element(By.ID, 'rqStartQuiz').click() #start the quiz