user3518405
user3518405

Reputation: 45

Automation tools for react native mobile apps

I need to automate mobile apps which are react native apps . Can somebody suggest what are good tools to automate these apps ? I used appium(python) for testing mobile apps uptill now .

Can I use appium for testing react native apps as well?

Or can somebody please suggest tool/technology to test react native applications . Also If there is any tool which support python to write tests for react native apps?

Upvotes: 1

Views: 610

Answers (1)

Akila Devinda
Akila Devinda

Reputation: 5492

Yes, you can use appium !

I did research on React Native dedicated tools and it turns out there are plenty of frameworks that allow for writing one code for both platforms:

More Information

  • Unit testing components (Jest).
  • Shallow-render testing components (enzyme).
  • Testing within your native environment, using native JS hooks (Appium).
  • Testing completely within your native environment (XCTest).

Upvotes: 2

Related Questions