I don’t know what the screenshot is suppose to do/symbolise …
Again, you use xpath to select ELEMENTS not properties
In your first query you are selecting a property that is not valid ( not valid for openrpa since it always expect an html element, it’s valid xpath )
In your next example your selecting a div. But a div is not am image. you need to rewrite your xpath to select an img tag.
If the img tag i direclty under the div you found, this could work
//div[@class=“imgTagWrapper”]/img
or if you know there is only 1 img and it’s not directly under the div, maybe this would work
//div[@class=“imgTagWrapper”]//img