페이지에 iframe이 있다면 iframe 내 Element는 직접 접근 안된다. 먼저 접근하려는 Element가 있는 iframe으로 전환 후 Xpath로 접근하여 처리하고 다시 빠져 나온다. from selenium import webdriver driver = webdriver.Chrome() driver.get('https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_input_type_checkbox') # iframe id값을 이용해 프레임 전환 driver.switch_to.frame('iframeResult') # Xpath로 해당 checkbox/radio button 접근 후 클릭 elem = driver.find_element_by_x..