Xpath with namespace and position#353
Closed
knit-bee wants to merge 3 commits into
Closed
Conversation
scoder
reviewed
Dec 1, 2022
Member
scoder
left a comment
There was a problem hiding this comment.
Thanks. I think we should reduce the amount of code that we add here, though.
Comment on lines
+377
to
+380
| self.assertEqual( | ||
| summarize_list(elem.findall("tag", namespaces=namespaces)), | ||
| ["{nsnone}tag", "{nsnone}tag"], | ||
| ) |
Member
There was a problem hiding this comment.
Given how many examples you add here, this seems worth its own custom assert method: .assertFindallEqual(element, path, expected, namespaces=None).
Also, do we actually need to add these tests? ISTM that we could get away with running the existing tests three times, once without namespaces dict, once with an empty one, and once with a non-empty one.
Author
|
Thank you for the review, I will try to include your suggestions next week. |
scoder
reviewed
Jan 2, 2024
Member
|
Thanks for this PR, I have integrated it in e950468 but implemented the tests differently. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I noticed that it is not possible to use
elem.findorelem.findallwith an xpath that contains position indices if the method is called with thenamespacesargument.This behavior has also been reported in Bug #1873886.
It appears that during the tokenization of the xpath, the numbers are treated as tags, i.e. they are concatenated with the default namespace (during function calls with namespaces). This results in a wrong path imo.
For example:
The target element is not found here because the path that is used is effectively:
./{http://example.com/foo}bar[{http://example.com/foo}1]Changes:
tagis a number to avoid concatenation with the namespace.