如何使用 selenium 取得文字是否以粗體顯示
P粉147045274
P粉147045274 2024-03-22 10:52:43
0
1
379

我有一個這樣的pdf文件:

\<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\>

我必須透過 selenium 驗證 INFORMATIONBOLD 是否為粗體樣式,我使用 Xpath 選擇器找到了該樣式:

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

我無法找到一種方法來驗證先前使用 Selenium C# 的粗體樣式的特定類別

P粉147045274
P粉147045274

全部回覆(1)
P粉476883986

演算法:我只能給你一個演算法,因為我不是c#人。

  1. 識別所需元素並將其儲存到變數中。您可能會使用下列 XPath 表達式之一來定位元素
//div[text()='INFORMATIONBOLD']

或:

//nobr[text()='INFORMATIONBOLD']
  1. 將 font-weight CSS 值儲存到變數中,如下所示
var fontWeight = webelement.GetCssValue("font-weight");
  1. 如果 fontWeight 大於或等於 700 THEN 「它是粗體」
  2. 否則「它不是粗體」
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板