Page 1 of 1

HTML

Posted: Aug 21st, ’22, 00:26
by marcelolima
Hello, team.

I would like to use hotkeys to trigger a button on a website that has the following code:

HTML external: <botao id="pje-instancia-1" class="link pje-instancia-1" aria-label="Consulta Pública do Processo na 1ª Instância"></botao>


CSS Selector: #pje-instancia-1


CSS Path: html body assistente-de-selecao#assistente-de-selecao botao#pje-instancia-1.link.pje-instancia-1


Xpath: //*[@id="pje-instancia-1"]



How can I do? Which commands can I use? Thanks in advance.

Marcelo.

Edit: Browser: Firefox (can`t another).

Re: HTML

Posted: Aug 21st, ’22, 09:02
by Marko
The easiest would be to simulate Tab presses to select the button and then Enter to press, for example

Code: Select all

{Tab 10}}{Enter}
In Internet Explorer you could use COM.

Re: HTML

Posted: Aug 21st, ’22, 12:06
by marcelolima
Unfortunately the “tab” doesn't work in my case.

When any text is selected in the browser, like the numbers highlighted in the image below, this drop-down menu is opened through an extension used in Firefox.

Unfortunately the “tab” doesn't work in this menu and unfortunately this menu opens on any selected text.

As the menu appears even at times I don't want it, being inconvenient sometimes, I would like to disable it (the extension allows this) and at the same time I would like to use one of the options that are contained in this menu using shortcut keys through from FastKeys, as I mentioned above.

Image -->> https://drive.google.com/file/d/1mf4K2o ... sp=sharing


Anyway, thanks a lot.