In flutter integration test, if we want to tap on a button that is built by ourselves, we can easily do it by:
await driver.tap(find.byValueKey("my_lovely_button_key"));
However, if a widget is not built by us, for example, a date picker, an image picker, etc., how do we tap on any of the buttons there?

