Changes between Initial Version and Version 1 of Ticket #27906
- Timestamp:
- Mar 7, 2017, 4:53:35 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27906
- Property Summary assertContains('<a/><b/><c/>', '<a/><b/>', html=True) fails → assertInHTML('<a/><b/>', '<a/><b/><c/>') fails
-
Ticket #27906 – Description
initial v1 1 As the title indicates, `assertContains` in HTML modefails to find matches in the haystack if the needle consists of multiple sibling elements that do appear in the haystack with more siblings on the same level.1 As the title indicates, HTML substring search fails to find matches in the haystack if the needle consists of multiple sibling elements that do appear in the haystack with more siblings on the same level. 2 2 3 3 This is a follow-up to #24112, which fixed the simple case when the list of children of an element matches exactly the list of children of the needle.