4
I have the goal to create a file . bat that automates my login on a given site.
I can open the site with . bat through the start Chrome.exe command "meusite.com", and would like to know how to create a script that double-press the key TAB and once the key ENTER.
An example of what I imagine it to be:
start chrome.exe "http://www.meusite.com"
teclado_automatico "{Alt}"
teclado_automatico "{Alt}"
teclado_automatico "{Enter}"
You can try a different approach with powershell, instead of opening the browser, make a request and pass the login and password in the body(post).
– rray
thanks for the @rray tip
– Phillip
After logging into the site, you need to do what?
– rray
only display the screen in fullscreen, will be only for display
– Phillip