Selenium sets whether to explicitly wait or wait for the page to load

set through WebDriverWait to proceed directly to the next step as soon as the desired element appears, but the element is loaded without click operation, and has been waiting for the web page to load, waiting for the web page to load before click. And I set the time limit to 15s, the web page loading time is more than 15s, and there is no exception?

driver = webdriver.Chrome()
driver.maximize_window()
driver.get(url)
try:
    WebDriverWait(driver,15).until(expected_conditions.element_to_be_clickable(By.XPATH("//*[@id="tabLogin"]/a/img"))).click()
except Exception as e:
    driver.quit()
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b38173-4ed4e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b38173-4ed4e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?