fix Logical Error for cityline

master
Max 2023-03-15 16:55:29 +08:00 committed by GitHub
parent 069ce7669b
commit 08d4846b35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -6176,12 +6176,10 @@ def cityline_main(driver, url, config_dict):
return return
# https://msg.cityline.com/ https://event.cityline.com/ # https://msg.cityline.com/ https://event.cityline.com/
if 'msg.cityline.com' or 'event.cityline.com' in url: if 'msg.cityline.com' in url or 'event.cityline.com' in url:
try: try:
WebDriverWait(driver, 10, poll_frequency=0.01).until(
EC.element_to_be_clickable((By.XPATH, "//button[@id='btn-retry-en-1']"))
)
driver.execute_script("goEvent();") driver.execute_script("goEvent();")
time.sleep(0.1)
except Exception as exec1: except Exception as exec1:
pass pass
pass pass