i am using the following nested xpath query
$xpath->query('//ul[@id="ref_1000"]/li[not(strong)][//span[@class="refinementLink"]]');
what i want is
Can anybody help me making this nested xpath query?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Expression:
This selects any
spanthat has aclassattribute whose string value isrefinementLinkthat is a descendant of anylithat does not have astrongchild that is a child of theulwith anidattribute whose string value isref_1000.