本文整理汇总了C#中IWebElement.GetCssValue方法的典型用法代码示例。如果您正苦于以下问题:C# IWebElement.GetCssValue方法的具体用法?C# IWebElement.GetCssValue怎么用?C# IWebElement.GetCssValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IWebElement
的用法示例。
在下文中一共展示了IWebElement.GetCssValue方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SaveElement
private static void SaveElement(IWebElement element)
{
SavedElement = element;
SavedBorder = element.GetCssValue("border");
SavedBackground = element.GetCssValue("background");
SavedColor = element.GetCssValue("color");
}
示例2: HighlightElement
public static void HighlightElement(IWebElement element)
{
IJavaScriptExecutor js = ((IJavaScriptExecutor)driver);
String bgcolor = element.GetCssValue("background-color");
js.ExecuteScript("arguments[0].style.compose__labels.background-color = '" + "red" + "'", element);
ScreenShots.ScreenShot();
js.ExecuteScript("arguments[0].style.compose__labels.background-color = '" + bgcolor + "'", element);
}
示例3: HighlightElement
public static void HighlightElement(IWebElement element)
{
Console.WriteLine("Executes JavaScript Highlight");
string bg = element.GetCssValue("backgroundColor");
IJavaScriptExecutor js = (IJavaScriptExecutor)Driver;
js.ExecuteScript("arguments[0].style.backgroundColor = '" + "yellow" + "'", element);
Snapshot();
js.ExecuteScript("arguments[0].style.backgroundColor = '" + bg + "'", element);
}
示例4: RateInfo
public RateInfo(IWebElement button)
{
rateButton = button;
if (button == null)
throw new NotFoundException("не найдена rate кнопка");
try
{
button.GetCssValue("active");
isActive = true;
}
catch
{
isActive = false;
}
}
示例5: GetCssValue
public static string GetCssValue(IWebElement iwe, string cssValue)
{
var value = iwe.GetCssValue(cssValue);
return value;
}
示例6: TryGetCssValue
private string TryGetCssValue(IWebElement element)
{
try
{
return element.GetCssValue(_actualAction.CommandParameter);
}
catch (Exception ex)
{
return ex.Message;
}
}