Unfortunately this is impossible for all cases
We can't do this in case we want to use our own driver...
public static implicit operator SElement(IWebElement webelement)
{
return new SElement(webelement, DRIVER); // we need to pass the driver here, but there is no ability to pass it during implicit cast...
}
Unfortunately this is impossible for all cases We can't do this in case we want to use our own driver...