Python Forum
How to fill text fields web forms - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: How to fill text fields web forms (/thread-21342.html)



How to fill text fields web forms - Martinelli - Sep-25-2019

Hi all!

I am trying to fill the text fields on the following web form to make a search, and, after scratch the results.

Web Form to fill

I can select options from the combobox using Selenium. It works fine. But I cannot insert text on the text fields.

There is no API to use...

Has anyone know a way to insert text on the text fields in a web form?

Regards,
Martinelli


RE: How to fill text fields web forms - Martinelli - Sep-25-2019

Hi, guys!

Sorry for that! Big Grin

I found it!

browser.find_element_by_id('user').send_keys('text')
It solved my problem.

Thanks!!
Gustavo Martinelli