本文整理汇总了C#中IWebElement.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# IWebElement.ToString方法的具体用法?C# IWebElement.ToString怎么用?C# IWebElement.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IWebElement
的用法示例。
在下文中一共展示了IWebElement.ToString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: getElementIdentifier
/// <summary>
/// Returns the element identifier as a concatenated string
/// </summary>
/// <param name="element">Element for which to get the locator info</param>
/// <returns>string element identifier</returns>
public string getElementIdentifier(Tuple<locatorType, string> element)
{
//Use the tuple to find the element
we = findElement(element);
string locator = "";
int startPosition = 0;
//Find a specific, and consistent, starting place in the string
startPosition = we.ToString().LastIndexOf(": ") + 2;
//Extract a substring, which is the identifier
locator = we.ToString().Substring(startPosition,
we.ToString().LastIndexOf("]"));
return locator.Trim();
}
示例2: getElementLocatorAsString
/// <summary>
/// Return the Selenium 'By' locator, as a string, for a given element
/// </summary>
/// <param name="element">A user-defined tuple to be used to find an element</param>
/// <returns>Return the By locator, as a string, to reuse</returns>
public string getElementLocatorAsString(Tuple<locatorType, string> element)
{
//Use the tuple to find the element
we = findElement(element);
int startPosition = 0;
string locator = "";
//Find a specific, and consistent, starting place in the string
startPosition = we.ToString().LastIndexOf("->") + 3;
//Extract a substring, which is the locator
locator = (we.ToString().Substring(startPosition,
we.ToString().LastIndexOf(":"))).Trim();
return locator;
}
示例3: SetCheckBox
public void SetCheckBox(string state, IWebElement element)
{
Logger.Trace(" Checkbox " + element.ToString() + " is " + state);
if ((element.Selected && string.Compare(state, "0", true) == 0)
|| (!element.Selected && string.Compare(state, "1", true) == 0))
{
element.Click();
}
}