Tab tab = instance.ActiveTab;
tab.Navigate("https://vk.com/");
tab.WaitDownloading();
int x = 0;
int y = 0;
var el = tab.FindElementByXPath(@"//input[@id='ts_input']", 0);
if (!el.IsVoid)
{
x = el.DisplacementInBrowser.X;
y = el.DisplacementInBrowser.Y;
}
project.Variables["x"].Value = x.ToString();
project.Variables["y"].Value = y.ToString();
project.SendInfoToLog($"x: {x}, y: {y}");