I'm trying to enter OTP in the browser for each of 5 INPUTs. If I type in the codes myself, it jumps to the next INPUT. In Selenium, it stays on one input and tries to enter code in the first INPUT box.
input = browser.find_element(By.XPATH, "//form//input[@type='text']").send_keys("123456")
I want to get all inputs in the list and then enter OTP on each box by the loop.