如何验证html对象的字体系列?

时间:2016-04-19 12:37:37

标签: c# coded-ui-tests

我试图验证对象的字体系列。这是代码

        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总是失败。有什么想法吗?

0 个答案:

没有答案