Trying to find a way to auto solve captchas.
I have a way to click on the "Im not a bot" checkbox which works most of the time. But for the more difficult captcha I would like to use the Buster. However, from the DOM I'm unable to press the #solver-button button, I assume because of the Shadow Root? But even after changing the shadow method to open I'm still unable to start the solution. I can find the button using:
document.querySelector('#rc-imageselect > div.rc-footer > div.rc-controls > div.primary-controls > div.rc-buttons > div.button-holder.help-button-holder').shadowRoot.querySelector("#solver-button"); but a click of that selector or dispatching an event did not trigger the extension.
Is there a way to trigger this button automatically from within the DOM?
@Bramzor, full automation and scripting are not within the scope of this project due to their potential for misuse. The solver must always be manually started from the extension button.
Trying to find a way to auto solve captchas. I have a way to click on the "Im not a bot" checkbox which works most of the time. But for the more difficult captcha I would like to use the Buster. However, from the DOM I'm unable to press the #solver-button button, I assume because of the Shadow Root? But even after changing the shadow method to open I'm still unable to start the solution. I can find the button using:
document.querySelector('#rc-imageselect > div.rc-footer > div.rc-controls > div.primary-controls > div.rc-buttons > div.button-holder.help-button-holder').shadowRoot.querySelector("#solver-button");
but a click of that selector or dispatching an event did not trigger the extension.Is there a way to trigger this button automatically from within the DOM?