I am using Python and Selenium to fill out a form quickly. It can fill out everything except for the telephone number and credit card number. I am using
driver.find_element_by_id("order_tel").send_keys(telInfo.get())
And
driver.find_element_by_id("cnb").send_keys(numberInfo.get())
I fill out everything else the same way, and it works. The only difference with these two is that the entry form is pre-formatted. Here is a photo of the telephone entry. The same is with the credit card. I can paste into them, but the send_keys command just isn't working.
So are there any workarounds/ alternate ways to fill out this form?