Answers for "xpath start-with python"

0

xpath start-with python

$x('//span[@class="text" and starts-with(.,"A")]/text()')
#Delivers texts of certain html element(span here) which start with "A"
$x('//span[@class="text" and ends-with(.,"A")]/text()')
#Delivers texts of certain html element(span here) which ends with "A" ;)
Posted by: Guest on October-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language