react-native-navigation的迁移库

ScreenStyleDynamic.test.js 546B

12345678910111213141516
  1. const Utils = require('./Utils');
  2. const elementByLabel = Utils.elementByLabel;
  3. describe('screen style - dynamic', () => {
  4. beforeEach(async () => {
  5. await device.relaunchApp();
  6. });
  7. it('change title on container component', async () => {
  8. await elementByLabel('Push Options Screen').tap();
  9. await expect(element(by.label('Static Title').and(by.type('UILabel')))).toBeVisible();
  10. await elementByLabel('Dynamic Options').tap();
  11. await expect(element(by.label('Dynamic Title').and(by.type('UILabel')))).toBeVisible();
  12. });
  13. });