Skip to content

Instantly share code, notes, and snippets.

@henesgokdag
Created July 18, 2021 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henesgokdag/6445063616e9c80184cb7e4f4a97c05d to your computer and use it in GitHub Desktop.
Save henesgokdag/6445063616e9c80184cb7e4f4a97c05d to your computer and use it in GitHub Desktop.
//Id ile IWebElement yakalama örneği:
[FindsBy(How = How.Id, Using = "login-email")]
public IWebElement txtLoginEmail;
//classname ile IWebElement yakalama örneği
[FindsBy(How = How.ClassName, Using = "account-user")]
public IWebElement btnAccountLogin;
//xpath ile IWebElement yakalama örneği
[FindsBy(How = How.XPath, Using = "//a[contains(@class,'account-basket')]")]
public IWebElement btnBasket;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment