Handling Overlapping URLs in Screen Mapping
Example Scenario
Solution: Adjusting Matching Rules
Updated Matching Rule
{
"matching_criteria": {
"rule_engine_rule": "url and not [w for w in context['in_url'] if w not in url] and not [w for w in context['not_in_url'] if w in url]",
"context": {
"in_url": [
"example.domain.com/report"
],
"not_in_url": [
"reports-creator",
"other-pages-with-overlap"
]
}
}
}Explanation of the Rule
Expected Outcome
Alternative Approach
Conclusion
PreviousAdvanced Examples for Data CollectionNextClick Activity and Field Edit Tracking for Web Applications
Last updated