Or can i adapt the following code:
var AcKey = "Your
anti-captcha API Key";
var image = await GetImageByXpath('//*[@id="captcha_one"]');
if(image)
{
var result = await ACSolve({
"clientKey":AcKey,
"task":
{
"type":"ImageToTextTask",
"body":image,
"phrase":false,
"case":false,
"numeric":false,
"math":0,
"minLength":0,
"maxLength":0
}
}, 150);
//success without error
if(result && result.errorId == 0)
{
SetByXpath(GenerateXpath("input", "name", "ct_captcha0"), "value", result.solution.text);
await Delay(1000);
await ClickByXpath(GenerateXpath("input", "type", "submit"));