react-native-navigation的迁移库

Utils.js 155B

123456789
  1. module.exports = {
  2. elementByLabel: (label) => {
  3. return element(by.label(label));
  4. },
  5. elementById: (id) => {
  6. return element(by.id(id));
  7. }
  8. };