如何使用 HP UFT 或 Selenium Webriver 检索元标记 属性 For open Graph

How To Retrieve The Meta Tag Property For open Graph using HP UFT or Selenium Webriver

我正在尝试验证我们网站中的开放图元标记 &。这是 HTML 代码:

<div class="atg_store_applicationResourceContainer">
            </div>
      <meta name="robots" content="index, follow" />

            <!--  Coming inside regular metadetails-->
                            <!-- contentKey =  -->

        <!--  SEOTagID -  **** -->
    <title>Sectional Living Rooms&nbsp;</title>
                <meta name="description" content="Find Sectional Living Rooms&amp;nbsp; that will look great in your home and complement the rest of your furniture." />
                <meta name="author" content="EXAMPLE.com" />

        <meta name="google-site-verification" content="UscxdOsY5bXX9hk_Y0GILMPvzsL66vDcHHwkZZ7Gxpg" />

        <meta property="og:title" content="Sectional Living Rooms&nbsp;"/>
        <meta property="og:site_name" content="EXAMPLE"/>
            <!-- requestSocialUrl = http://www.example.com/cartridges/PageSlot/PageSlot.jsp -->
      <!-- customCanonical = http://www.example.com/furniture/Living-Rooms/Sectional-Living-Rooms/_/N-8wh -->
                       <link rel="canonical" href="http://www.example.com/furniture/Living-Rooms/Sectional-Living-Rooms/_/N-8wh" /> <!-- add + instead of space in words for SEO -->
                              <meta property="og:image" content="http:/images/unavailable.gif?$PDP_Cart_Primary_150x150$" />
            <meta property="og:type" content="product"/>
        <meta property="og:url" content="http://www.example.com/furniture/Living-Rooms/Sectional-Living-Rooms/_/N-8wh"/>
        <meta property="og:description" content="Find Sectional Living Rooms&amp;nbsp; that will look great in your home and complement the rest of your furniture.&amp;nbsp;#iSofa #abc"/>
    <script>var _adblock=true;</script>

我正在尝试从具有 property 属性值的 meta 标签中获取 content 属性的值 og:title & og:description。任何帮助都会有所帮助。

我能够找到带有名称的元数据内容,但无法获取 <og:title><og:description> 的内容,因为标签没有名称

我们同时使用 UFT 和 Selenium Webdriver (Java)。所以我可以在任何一个上使用帮助。

对于 Selenium,您可以像

这样使用 xpath
//meta[@property='og:title']
//meta[@property='og:description']

要获取内容,请使用 WebElement

getAttribute() 方法
 WebElement titleEl=driver.findElement(By.xpath("//meta[@property='og:title']"));
 String titleContent = titleEl.getAttribute("content");