xpath 如何使用 div(s) 的 class 名称进行搜索

How xpath can search with class name of a div(s)

如何通过 xpath 搜索具有特定 class 名称的所有 DIV 我目前正在使用以下代码:

    <template id="external_layout_boxed" inherit_id="web.external_layout_boxed">


        <xpath expr="//div[@class='header']" position="replace">
            <t>
                xxxxxx
            </t>
        </xpath>

    </template>

搜索所有 Odoo 插件我终于找到了答案:

<template id="external_layout_boxed" inherit_id="web.external_layout_boxed">


    <xpath expr="//div[hasclass('header')]" position="replace">
        <t>
            xxxxxx
        </t>
    </xpath>

</template>