OpenQA.Selenium.By.ToString C# (CSharp) Method

ToString() public method

Gets a string representation of the finder.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return this.description;
        }

Usage Example

Exemplo n.º 1
1
 public IElementAssert DoNotExist(By findExpression, string message = null, TimeSpan maxWait = default(TimeSpan))
 {
     return DoNotExist(() => Find.Element(findExpression, maxWait), findExpression.ToString(), message);
 }
All Usage Examples Of OpenQA.Selenium.By::ToString