Need to Automate Form Submission with reCAPTCHA and Table Extraction

I’m trying to build a flow that automates the retrieval of fiscal data from the São Paulo State Finance Department website.

The automation should perform the following steps:

  1. Access this URL:
    Secretaria da Fazenda - Governo do Estado de São Paulo
  2. Input a known access key into the field labeled “Chave de Acesso”, which corresponds to the HTML element with id="conteudo_txtChaveAcesso".
  3. Solve the reCAPTCHA present on the page.
    Note: The CAPTCHA is the simple “I’m not a robot” checkbox (invisible or checkbox-only reCAPTCHA v2), with no image challenges.
  4. Click the “Consultar” button to submit the form.
  5. After submission, the website navigates (or updates) to:
    Secretaria da Fazenda - Governo do Estado de São Paulo
    where the resulting data is displayed in a table format. I need to extract this table content.

Questions:

  • Has anyone successfully bypassed or interacted with the Google reCAPTCHA checkbox using Make.com?
  • Is it possible to inject the code and trigger the form submission using a custom HTTP request or Web Automation module?
  • Alternatively, should I use a third-party service to solve the reCAPTCHA, or is there a way to manually authenticate the session and reuse the token?

Any suggestions, workarounds, or insights from someone who has done something similar would be highly appreciated!