Last active
April 20, 2023 17:36
-
-
Save michaelkarrer81/586bbc65e308d31e60a8d065ab74f508 to your computer and use it in GitHub Desktop.
[XPATH Examples] #xpath #odoo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Attribute contains string(s) --> | |
<xpath expr="//div[contains(@class, 'oe_right oe_button_box')]" position="inside">...</xpath> | |
<!-- Last element --> | |
<xpath expr="//ul/li[last()]" position="after">...</xpath> | |
<xpath expr="//ul/li[@class='nav'][last()]" position="after">...</xpath> | |
<!-- First element --> | |
<xpath expr="//ul[1]]" position="after">...</xpath> | |
<!-- Last li of first ul --> | |
<xpath expr="//ul[1]/li[last()]]" position="after">...</xpath> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment