I want to click button
<p class="btn" id="LargeNextBtn" style=""><a href="javascript:fnNextStep('P');" id="LargeNextBtnLink" onfocus="this.blur();"><img src="//ticketimage.globalinterpark.com/ticketimage/Global/Play/onestop/G2001/btn_next_on.gif" id="LargeNextBtnImage" alt=""> </a></p>
but when I use find_element
driver.find_element("id", "LargeNextBtn").click()
can't find "LargeNextBtn"
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":"[id="LargeNextBtn"]"}
I also try to into iframe but it also fail
WebDriverWait(driver, 9).until(EC.frame_to_be_available_and_switch_to_it((By.ID,"ifrmBookStep")))
Any help or pointers is appreciated, thank you!