DevExpress / testcafe-react-selectors

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

Add predicate for the '.withProps' method #194

Open ChrisLane opened 1 year ago

ChrisLane commented 1 year ago

I would like a new version of withProps that is able to accept a function as an argument that determines whether a component should be returned.

Example use case: We pass Immutable.js objects to component properties and want to match against their values. Currently, I'm not aware of a clean way that we can do this but with the above proposal, we could hopefully do something like this:

const mySelector = ReactSelector("MyComponent").withProps(props => props.config.toJS().valueToCheck === "matching value")
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