Search functionality in Allure Report doesn't find tests by story/feature labels, only by test title #3161
Unanswered
WhyFaust
asked this question in
Questions & Support
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The built-in search in Allure Report only searches through test title fields, ignoring other important metadata like story, feature, and custom labels. This significantly limits the search capabilities and makes it difficult to find related tests.
Current Behavior
Expected Behavior
Search should work across all test metadata:
Example Test Structure
python
@allure.feature('Tools/Dictionaries/UI dictionary tables')
@allure.story('1987: Search in dictionary table')
@allure.title('Verify search functionality in dictionary table')
def test_search_dictionary_table():
# Test implementation
Impact
Proposed Solution
Enhance the search algorithm to index and search through:
Maybe I just don't understand how to implement this, and it already exists. Please tell me. Maybe there's a way to do this.
Beta Was this translation helpful? Give feedback.
All reactions