'How to fill the internet form

I am trying to fill the adress form (delivery address), but can't fill Flat Number. Part wit City/Street/House number is working correctly, but FlatNumber is just nothing.

input_tab = browser.find_element(By.XPATH, '//*[@id="addressQueryInput"]')
input_tab.send_keys("City, street, house")

input_tab_f = browser.find_element(By.XPATH, '//*[@id="inputFlatNumber"]')
input_tab_f.send_keys(Keys.ENTER)
input_tab_f.send_keys("12")


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source