I'm trying to automate a manual process using Python Selenium, where I have write a block of SQL codes within a textbox in a website on a daily basis.
We can input Texts using send_keys(). But I'm not sure How can we input a Block of SQL queries with a textbox using python selenium so that I can automate this process.
Basically We Input SQL queries in the textbox in our website on a daily basis and whatever queries are there within the textbox the website executes them and provides the result in dashboard. Basically the textbox acts as a Compiler for SQL queries.
Can anyone help me how to input a Block of SQL queries to a textbox in a website using python selenium as to automate this daily process.
Thanks, Sanjay.