react-native-navigation的迁移库

ScreenStyle.test.js 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. const Utils = require('./Utils');
  2. const elementByLabel = Utils.elementByLabel;
  3. describe('screen style', () => {
  4. beforeEach(async () => {
  5. await device.relaunchApp();
  6. });
  7. it('declare a navigationOptions 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. });
  11. it('change title on container component', async () => {
  12. await elementByLabel('Push Options Screen').tap();
  13. await expect(element(by.label('Static Title').and(by.type('UILabel')))).toBeVisible();
  14. await elementByLabel('Dynamic Options').tap();
  15. await expect(element(by.label('Dynamic Title').and(by.type('UILabel')))).toBeVisible();
  16. });
  17. it('set dynamic options with valid options will do something and not crash', async () => {
  18. // we have no way of testing individual styles for the screen
  19. await elementByLabel('Push Options Screen').tap();
  20. await elementByLabel('Dynamic Options').tap();
  21. await expect(element(by.label('Options Screen'))).toBeVisible();
  22. });
  23. it('hides Tab Bar when pressing on Hide Top Bar and shows it when pressing on Show Top Bar', async () => {
  24. await elementByLabel('Push Options Screen').tap();
  25. await elementByLabel('Hide Top Bar').tap();
  26. await expect(element(by.type('UINavigationBar'))).toBeNotVisible();
  27. await elementByLabel('Show Top Bar').tap();
  28. await expect(element(by.type('UINavigationBar'))).toBeVisible();
  29. });
  30. it('hides topBar onScroll down and shows it on scroll up', async () => {
  31. await elementByLabel('Push Options Screen').tap();
  32. await elementByLabel('scrollView Screen').tap();
  33. await elementByLabel('Toggle Top Bar Hide On Scroll').tap();
  34. await expect(element(by.type('UINavigationBar'))).toBeVisible();
  35. await element(by.id('scrollView')).swipe('up', 'fast');
  36. await expect(element(by.type('UINavigationBar'))).toBeNotVisible();
  37. await element(by.id('scrollView')).swipe('down', 'fast');
  38. await expect(element(by.type('UINavigationBar'))).toBeVisible();
  39. });
  40. it('set Tab Bar badge on a current Tab', async () => {
  41. await elementByLabel('Switch to tab based app').tap();
  42. await elementByLabel('Set Tab Badge').tap();
  43. await expect(element(by.text('EnCyClOpEdIa'))).toBeVisible();
  44. });
  45. });