Good afternoon guys, I would like to know if anyone can help me ...
I'm automating a page and would like to know if it's possible to use an excell worksheet to populate the fields ...
For example:
Today I am using the following command, it inserts in the element mname
the Mariano information, this I inserted manually.
driver.find_element_by_id("mname").send_keys("mariano")
What do I need? I need that instead of this Mariano, it looks for an information that is in an excell worksheet, so I will use the excell as a parameter without having to touch my script
driver.find_element_by_id("mname").send_keys("Dados da coluna A2 do Excell")
Thank you very much.