Moderatör tarafında düzenlendi:
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
List<IWebElement> butontikla = new List<IWebElement>(iggiris.FindElements(By.TagName("input")));
for(int t = 0; t<butontikla.Count; t++)
{
if(butontikla[t].GetAttribute("name") == "btnK"
{
butontikla[t].Click();
}
}
List<IWebElement> butontikla = new List<IWebElement>(iggiris.FindElements(By.TagName("button")));
for(int t = 0; t<butontikla.Count; t++)
{
if(butontikla[t].GetAttribute("type") == "submit"
{
butontikla[t].Click(); break;
}
}