Is XPath deprecated in Selenium C#?
XPATH is one of the most familier way for Web Test Automation to indentify elements in Web Application.While using Selenium C# binding still you can choose XPATH as a Locator Strategy , Here is the Example
WebDriver.FindElementByXPath(“//input[@id=‘login’]”).Click();