What XPath can I use to select any category with a name attribute specified and any child node author with the value specified.
I\'ve tried different variations of t
You can apply multiple conditions in xpath using and, or
//input[@class='_2zrpKA _1dBPDZ' and @type='text'] //input[@class='_2zrpKA _1dBPDZ' or @type='text']