var css = instance.ActiveTab.FindElementByXPath("//textarea[contains(@name, 'g-recaptcha-response')]",0);
if (css.IsVoid) return -1;
string attribute = css.GetAttribute("style");
string newStyle = attribute.Replace(@"display: none", "display: block");
css.SetAttribute("style", newStyle);
css.SetValue(project.Variables["captchaAnswer"].Value, "None", false);