I'm trying to automate building a database of photos of this website : mcmaster it is using ajax.
but it's impossible to click on its first-page elements I have tried these codes :
driver.find_element_by_id("//span[@class='s7']").click()
or
driver.find_element_by_id("//a[span/@class='s7']").click()
or
driver.find_elements_by_tag_name("a")[5].click()
but it says element not intractable and there is nothing else to locate the page elements with.
I just can't understand if a a tag is not clickable what is clickable?