Upgrade to Pro — share decks privately, control downloads, hide ads and more …

ReactNativeアプリをBitrise上でUITestしてみた話

t0m0120
September 03, 2019

 ReactNativeアプリをBitrise上でUITestしてみた話

t0m0120

September 03, 2019
Tweet

More Decks by t0m0120

Other Decks in Technology

Transcript

  1. <Button
 testID=’test’
 accssible
 accessibilityLabel=’test’ 
 />
     ↓
 ・Android 
 Record

    Espresso Test 
 ・iOS
 UI Recording
 両OS共デバイス操作をコードにしてくれる
 targetElement = onView(allOf(withContentDescription(‘test’), isDisplayed())); 
 targetElement.perform((click()));