Is this possible to create something like Find.Elements.By.Name(string name)
using fluent api design pattern in c#? If so, how?
A way to implement this:
public class Find
{
public struct Elements
{
public struct By
{
public static WindowsElement Name(string name)
{
// code here
}
}
}
}