DevExpress / testcafe-react-selectors

TestCafe selector extensions for React apps.
https://testcafe.io
MIT License
205 stars 43 forks source link

Select component based on matching criteria function #195

Open ChrisLane opened 1 year ago

ChrisLane commented 1 year ago

For the example JSX below

<TodoApp className="todo-app">
    <div>
        <TodoList>
            <TodoItem priority="High">Item 1</TodoItem>
            <TodoItem priority="Low">Item 2</TodoItem>
        </TodoList>
        <TodoList>
            <TodoItem priority="Medium">Item 1</TodoItem>
        </TodoList>
    </div>
</TodoApp>

If I want to make some assertions on a TodoList component that contains a TodoItem with priority="Medium", I would have to filter TodoList components based on the values in .child() or .findReact("TodoItem").withProps({priority: "Medium"})

I think it would be cleaner if if could instead select a component based on whether a function returns true. For example:

const mySelector = ReactSelector("TodoList").matches(selector => selector.findReact("TodoItem").withProps({priority: "Medium"}));

Would this be a possible improvement that could be incorporated into the project?

miherlosev commented 1 year ago

Hi @ChrisLane,

Thank you for sharing this idea with us.

github-actions[bot] commented 5 months ago

This issue has been automatically marked as stale because it has not had any activity for a long period. It will be closed and archived if no further activity occurs. However, we may return to this issue in the future. If it still affects you or you have any additional information regarding it, please leave a comment and we will keep it open.

ChrisLane commented 5 months ago

Bump