Following is how the element looks like on the page:
Programs and Courses are h3 tags. I want all the ul tags in between Programs and Courses. Following XPath gives me all the ul comes after Programs:
"//h3[.='Programs']/following::ul"
How do I filter it to have the only ul which comes in between Courses and Program.
Screenshot Source: https://catalog.fullerton.edu/preview_entity.php?catoid=16&ent_oid=1837&returnto=1920
Try below XPath to get required
ul
nodes: