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:
- Access this URL:
“Secretaria da Fazenda - Governo do Estado de São Paulo” - Input a known access key into the field labeled “Chave de Acesso”, which corresponds to the HTML element with
id="conteudo_txtChaveAcesso"
. - 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. - Click the “Consultar” button to submit the form.
- 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!