There indeed is,
Press F12 on your browser on the page, and then press the "Select Element" button on it, afterwards select the field you want to extract, as shown in my screenshot below:

This will boot you to the element select you wish to use, afterwards, simply right click the element, and select "Copy Full Xpath"
Now to use this path, you'll need to replace a few symbols with PADs' equivalent, (can usually just do it through Notepad really quickly)
E.g. this is what I got:
/html/body/div[2]/div/div/div/main/article/section[1]/div/div[1]/div/div[1]/div[2]/h3
and I need to replace all the /'s and [#]'s with this:
html > body >div:eq(1) > div> div> div > main > article >section:eq(0) > div > div:eq(0) > div > div:eq(0) > div:eq(1) > h3
Note that each number in brackets has also been reduced by 1, this is intentional.
Now just either paste this in the advanced options of the Extract data from webpage, or create any web selector and put this into it via the "text editor"
and you should be done.