suchen

Heim  >  Fragen und Antworten  >  Hauptteil

So ermitteln Sie mithilfe von Selen, ob Text fett gedruckt ist

Ich habe ein PDF-Dokument wie dieses:

\<div class=**"cs6C976429"** style="width:671px;height:18px;line-height:17px;margin-top:98px;margin-left:94px;position:absolute;text-align:left;vertical-align:top;"\>
\<nobr\>INFORMATIONBOLD\</nobr\>\</div\>
\<style type="text/css"\>
.cs85480F5E {color:#000000 !important;background-color:transparent !important;border-left-style: none !important;border-top-style: none !important;border-right-style: none !important;border-bottom-style: none !important;font-family:'Times New Roman' !important; font-size:13px !important; font-weight:normal !important; font-style:normal !important;  !important;}
.cs8B56BD64 {color:#000000 !important;background-color:transparent !important;border-left-style: none !important;border-top-style: none !important;border-right-style: none !important;border-bottom-style: none !important;font-family:'Times New Roman' !important; font-size:15px !important; font-weight:bold !important; font-style:normal !important;  !important;}
**.cs6C976429** {color:#000000 !important;background-color:transparent !important;border-left-style: none !important;border-top-style: none !important;border-right-style: none !important;border-bottom-style: none !important;font-family:'Times New Roman' !important; font-size:15px !important; **font-weight:bold** !important; font-style:normal !important; padding-left:2px !important;}
.cs354AAA62 {color:#808080 !important;background-color:transparent !important;border-left-style: none !important;border-top-style: none !important;border-right-style: none !important;border-bottom-style: none !important;font-family:'Times New Roman' !important; font-size:16px !important; font-weight:bold !important; font-style:normal !important; padding-left:2px !important;padding-right:2px !important;}
\</style\>

Ich musste durch Selenium überprüfen, ob INFORMATIONBOLD ein fetter Stil ist, was ich mithilfe des Xpath-Selektors gefunden habe:

\//style\[@type='text/css'\]

Ich kann keine Möglichkeit finden, eine bestimmte Klasse mit Fettdruck zu validieren, bevor ich Selenium C# verwendet habe

P粉147045274P粉147045274291 Tage vor368

Antworte allen(1)Ich werde antworten

  • P粉476883986

    P粉4768839862024-03-23 00:06:29

    算法:我只能给你一个算法,因为我不是c#人。

    1. 识别所需元素并将其存储到变量中。您可能会使用以下 XPath 表达式之一来定位元素
    //div[text()='INFORMATIONBOLD']

    或者:

    //nobr[text()='INFORMATIONBOLD']
    1. 将 font-weight CSS 值存储到变量中,如下所示
    var fontWeight = webelement.GetCssValue("font-weight");
    1. 如果 fontWeight 大于或等于 700 THEN “它是粗体”
    2. 否则“它不是粗体”

    Antwort
    0
  • StornierenAntwort