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

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

Sponsored · Ship Features Fearlessly Turn features on and off without deploys. Used by thousands of Ruby developers.
Avatar for t0m0120 t0m0120
September 03, 2019

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

Avatar for t0m0120

t0m0120

September 03, 2019

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()));