From aac15a115d6cf4d4937e00e0976cfec6980549fe Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Thu, 23 Mar 2023 09:10:02 +0100 Subject: [PATCH] Updated CSS Selector help (markdown) --- CSS-Selector-help.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CSS-Selector-help.md b/CSS-Selector-help.md index 0fefc22..99a7301 100644 --- a/CSS-Selector-help.md +++ b/CSS-Selector-help.md @@ -28,3 +28,8 @@ if you have filter: `//h3/parent::a//@href` +# Select all img "src" tag only with xPath filter + +``` +//img//@src +```