gpt4 book ai didi

xpath - 如何在 Odoo 上找到 XPath?

转载 作者:行者123 更新时间:2023-12-03 17:02:43 25 4
gpt4 key购买 nike

我需要在 Odoo 9 上找到正确的 XPath 到产品 ID。我已经尝试过了,但它提示“字符串”有一些问题。

错误详情:

View inheritance may not use attribute 'string' as a selector.

代码:
 <xpath expr="//page[@string='Order Lines']/field[@name='order_line']/form[@string='Sales Order Lines']/group/group/field[@name='product_id']" position="before">
<field name="image_small" widget="image"/>
</xpath>

最佳答案

在 odoo v9 中,您不允许在 xpath 中使用字符串作为选择器。
因此,在 xpath 中使用名称作为选择器是一个好习惯。

您应该尝试以下操作:

<xpath expr="//page/field[@name='order_line']/form/group/group/field[@name='product_id']" position="before">
<field name="image_small" widget="image"/>
</xpath>

或者你也可以这样写xpath,
<xpath expr="//field[@name='order_line']//form//field[@name='product_id']" position="before">
<field name="image_small" widget="image"/>
</xpath>

关于xpath - 如何在 Odoo 上找到 XPath?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39035999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com