[셀레니움] is not clickable at point 오류
1. 오류메세지 Message: element click intercepted: Element ... is not clickable at point (1285, 836). Other element would receive the click: 2. 문제가 되는 코드 ul_gugun = findById('html_locallayer') il_gugun = ul_gugun.find_elements(By.TAG_NAME,'li') list_gu1 = random.randrange(0,len(il_gugun)) findByXPath(f'//*[@id="html_locallayer"]/li[{list_gu1}]/label').click() 3. 해결방법 태그의 부모태그인 를 클릭 하도록 수정 테스트 용 크롬이 나왔..