From 2c0b50ccf1381979bb5e437b831e430c153aefa0 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Thu, 2 Mar 2023 22:54:22 +0100 Subject: [PATCH] Updated CSS Selector help (markdown) --- CSS-Selector-help.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CSS-Selector-help.md b/CSS-Selector-help.md index 0fc0f94..0fefc22 100644 --- a/CSS-Selector-help.md +++ b/CSS-Selector-help.md @@ -15,3 +15,16 @@ So for example if the HTML is ``` the selector would be `.points #interesting` + +# Select/extract just the HREF from `` tag using xpath + +if you have +``` +

+ +

+``` + +filter: `//h3/parent::a//@href` + +