>>543
じゃあフレームの問題かなあ…
あと見えててもクリックできない場合もあるので
毎回クリック可能待ちを入れてる
単純なクリックはこんな感じ

def chkclk(driver,xp,wt):
wait=WebDriverWait(driver,wt)
try:wait.until(expected_conditions.element_to_be_clickable((By.XPATH,xp)))
except Exception:return 1
try:driver.find_element_by_xpath(xp).click()
except Exception:return 1
return 0