HTML structure is as shown below,
<div class = "items">
<oj-input-text class = "input", label-hint = "asd">
<input class = "text-input-entry">
<oj-input-text class = "input", label-hint = "pfg">
<input class = "text-input-entry">
How do I write Xpath to get to input class = "text-input-entry" under oj-input-text class = "input", for the label-hint = "pfg"
I thought something like this would work but it does not
//div [@class = "items"]/oj-input-text [@class = "input", @label-hint = "pfg"]/input [@class = "text-input-entry"]