0

How to enumerate all xpath of elements displayed on a specified URL or webpage based on exact matched or unique objects?

Could someone provide any sample or reference?

karel
  • 5,489
  • 46
  • 45
  • 50
  • Possible duplicate of [How to get xpaths for all leaf elements from XML?](https://stackoverflow.com/questions/9064951/how-to-get-xpaths-for-all-leaf-elements-from-xml) – Alejandro Mar 22 '19 at 15:01

1 Answers1

0

I’m not sure if this is what you mean but an xpath of

ā€œ//*ā€

Should return all elements on your webpage in a list you can iterate.

C. Peck
  • 3,641
  • 3
  • 19
  • 36