I have a html table.
in that table I have
<td>abc</td><a>www.abc.com</a>
how can I get the link value using matching the value of td?
for example : how can I get the value of http://www.abc.com searching the tect abc using lxml?
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.
a/text()to get texta/@hrefto get attr (hrefin this case)UPD
XPath 1.0