// Obtain the Page object var url = "mail.ru"; Browsers.Item(btIExplorer).Run(url); var page = Sys.Browser("*").Page("*");
// Call the function var obj = page.FindChildByXPath("//*[@id='mailbox__auth__button']", false);
// Check the result if (obj != null) { // If the element was found, click it obj.Click(); } else { // If the element was not found, post a message to the log Log.Error("The element was not found."); } }
пытаюсь нажать на кнопку Войти на mail.ru --- не видит обьект, что делать?