我试图验证对象的字体系列。这是代码
HtmlDocument editorAfter = Browser.Find<HtmlDocument>("FriendlyName~Rich text editor, ctl00_ContentBodyPlaceHolder__An...;Class=cke_show_borders");
string TextVanEditoreAfter = editorAfter.ControlDefinition;
Assert.IsTrue(TextVanEditoreAfter.Contains("font-family=\"Arial, Verdana, sans-serif"));
但Controle定义不提取proprty字体系列。所以Assert总是失败。有什么想法吗?