Quote from Deleted user on March 28, 2019, 1:57 pm
If we talk about Web Automation with VisualNEO, I have even succeeded in auto-solving captchas!
1. Opened the site in WebBrowser Object,
2. Wait for page load to complete
3. Save the captcha image to [PubDir],
4. Use HPWImage Plugin to replace colors & simplify the captcha
5. Use David Esperalta's npTess plugin to convert captcha to text
6. Fill the captcha in text field by either using BrowserSetElement or by executing the following code with BrowserExecJavascript:
document.querySelector('#captcha-value').value=[solved_captcha];
7. Submit the form by executing the following code in BrowserExecJavascript:
document.querySelector('#captcha-form').submit();
I believe everything can be done with VisualNEO.
If we talk about Web Automation with VisualNEO, I have even succeeded in auto-solving captchas!
1. Opened the site in WebBrowser Object,
2. Wait for page load to complete
3. Save the captcha image to [PubDir],
4. Use HPWImage Plugin to replace colors & simplify the captcha
5. Use David Esperalta's npTess plugin to convert captcha to text
6. Fill the captcha in text field by either using BrowserSetElement or by executing the following code with BrowserExecJavascript:
document.querySelector('#captcha-value').value=[solved_captcha];
7. Submit the form by executing the following code in BrowserExecJavascript:
document.querySelector('#captcha-form').submit();
I believe everything can be done with VisualNEO.
luishp, Vadim and corstar have reacted to this post.