You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One such action, as discussed in #139, is for handling picker views.
We may want to add individual support or use invoke to create a general way of using these actions without explicit support in JS. Such a solution must have good user-facing API.
The text was updated successfully, but these errors were encountered:
I raised the subject of pickers in #139. I guess the naive implementation is something like:
class SetPickerColumnAction extends Action {
constructor(value) {
super();
if (typeof value !== 'string') throw new Error(`SetPickerColumnAction ctor argument must be a string, got ${typeof value}`);
this._call = invoke.call(invoke.IOS.Class('GREYActions'), 'actionForSetPickerColumn:', value);
}
}
Earl Grey has many actions which we don't yet support in Detox.
One such action, as discussed in #139, is for handling picker views.
We may want to add individual support or use invoke to create a general way of using these actions without explicit support in JS. Such a solution must have good user-facing API.
The text was updated successfully, but these errors were encountered: