Can I trigger a Toggle button on log in page when logging in with http request?

Hello everybody. I’m new here and couldn’t find an answer to my issue,

I am trying to access a third party app/website not supported currently with N8N direct integration. The log in page has a toggle switch so I can use basic_auth to access the site in theory however I’d like to be able to toggle the switch on the log in page before submitting.

For instance do I want to log into the red site, or the blue site.

Is it possible to toggle a button on a log in site?

I’m not sure if this will help (I have zero coding skills) but this is what I pulled from the site where the toggle is.

div class=“toggle-wrapper float-end xyz-paperswitch”>
input type=“checkbox” name=“paperSwitch” class=“toggle-checkbox xyz-paper-switch” id=“toggle1” autocomplete=“off”>
span class=“toggle-label toggle-off”>Live
label for=“toggle1”>
span class=“toggle-label toggle-on”>Paper

(edited so this will display)

understanding that I have no coding skills, and I expect the solution may include some coding, I’m hoping answers can be in step by step for dummies format…

Thank you in advance.

This is one of the form fields that gets submitted with the login request. You should be able to include that as a form field in the HTTP Request node like this:

Here’s the documentation on html form checkbox controls (so you can start learning some coding skills).