Writing a script with selenium and python3, is there a possibility to have the script click on a textbox on the http://digesto.asamblea.gob.ni/consultas/coleccion/ (click on "Búsqueda avanzada") without entering a value, so that the cursor is active in that textbox (indicated normally by a blinking vertical line), see example picture?
Usually one would use
driver.find_elements_by_xpath('//*[@id="txtCaptcha"]').click()
but this does not give the desired outcome as the textbox is not "active" looking like this:
My idea is to have the script "activate" the textbox and wait for me to insert a captcha, so that I simply can start writing instead of click in the textbox each time myself.

