BrowserStack vs. React (React.js)

Overview
ProductRatingMost Used ByProduct SummaryStarting Price
BrowserStack
Score 8.5 out of 10
N/A
BrowserStack is a test platform built for developers and QAs to expand test coverage, scale and optimize testing with cross-browser, real device cloud, accessibility, visual testing, test management, and test observability. BrowserStack states it currently powers over a billion tests a year for customers who include Amazon, Paypal, Well Fargo Bank, Nvidia, MongoDB, Pfizer, GE, Discovery, React JS, Apache, JQuery and several others rely on BrowserStack to test their web and mobile apps.
$0
per month Unlimited users and 5000 free screenshots
React (React.js)
Score 8.8 out of 10
N/A
React or React.js is a JavaScript library for building user interfaces. React enables users to create interactive UIs.
$0
Pricing
BrowserStackReact (React.js)
Editions & Modules
Percy - Free
$0
per month Unlimited users and 5000 free screenshots
App Percy - Free
$0
per month 5000 free screenshots and 100 minutes of infrastructure
Test Observability - Unlimited Free
$0
Accessibility Testing - Free
$0
Test Observability - Observability Pro
$0.01
per month per test execution
Percy - Desktop
$0.02
per month per screenshot
App Percy - Visual Core
$0.02
per month per screenshot
Percy - Desktop & Mobile
$0.02
per month per screenshot
App Percy - Visual Cloud
$0.03
per month per screenshot
Live - Desktop
$39
per month per user
Live - Desktop & Mobile
$49
per month per user
App Live - Individual
$49
per month per user
Automate - Desktop
$129
per month 1 parallel test
Live - Team
$175
per month 5 users
App Live - Team
$175
per month 5 users
Accessibility Testing - Team
$199
per month 5 users
Automate - Desktop & Mobile
$225
per month 1 parallel test
App Automate - Device Cloud
$249
per month 1 parallel test
App Live - Team Pro
$289
per month 5 users
App Automate - Device Cloud Pro
$299
per month 1 parallel test
Automate - Enterprise
Contact sales team
Percy - Enterprise
Contact Sales
App Automate - Enterprise
Contact Sales
App Live - Enterprise
Contact sales team
Live - Enterprise
Contact sales team
App Automate - Device Cloud Pro + Visual Cloud
Contact Sales
App Percy - Enterprise
Contact Sales
Test Observability - Enterprise
Contact Sales
Accessibility Testing - Enterprise
Contact Sales
No answers on this topic
Offerings
Pricing Offerings
BrowserStackReact (React.js)
Free Trial
YesNo
Free/Freemium Version
NoYes
Premium Consulting/Integration Services
NoNo
Entry-level Setup FeeNo setup feeNo setup fee
Additional Details
More Pricing Information
Community Pulse
BrowserStackReact (React.js)
Best Alternatives
BrowserStackReact (React.js)
Small Businesses
TestComplete
TestComplete
Score 7.9 out of 10

No answers on this topic

Medium-sized Companies
ReadyAPI
ReadyAPI
Score 6.2 out of 10

No answers on this topic

Enterprises
ignio AIOps
ignio AIOps
Score 8.1 out of 10
Sencha
Sencha
Score 7.0 out of 10
All AlternativesView all alternativesView all alternatives
User Ratings
BrowserStackReact (React.js)
Likelihood to Recommend
9.0
(244 ratings)
8.0
(14 ratings)
Likelihood to Renew
9.1
(19 ratings)
-
(0 ratings)
Usability
7.8
(23 ratings)
10.0
(3 ratings)
Availability
9.7
(5 ratings)
-
(0 ratings)
Performance
5.5
(78 ratings)
-
(0 ratings)
Support Rating
7.7
(24 ratings)
10.0
(3 ratings)
In-Person Training
7.3
(1 ratings)
-
(0 ratings)
Online Training
4.2
(3 ratings)
-
(0 ratings)
Implementation Rating
8.9
(8 ratings)
-
(0 ratings)
Configurability
8.3
(6 ratings)
-
(0 ratings)
Contract Terms and Pricing Model
8.9
(4 ratings)
-
(0 ratings)
Ease of integration
8.3
(3 ratings)
-
(0 ratings)
Product Scalability
9.8
(6 ratings)
-
(0 ratings)
Professional Services
8.9
(4 ratings)
-
(0 ratings)
Vendor post-sale
9.0
(4 ratings)
-
(0 ratings)
Vendor pre-sale
8.3
(4 ratings)
-
(0 ratings)
User Testimonials
BrowserStackReact (React.js)
Likelihood to Recommend
BrowserStack
If you need immediate testing (for example, from Azure pipelines agents), use BrowserStack instead of LambdaTest (which makes you wait in a "pool" until the device/platform combo you are querying is accessible). If you don't need your tests to be immediate and prefer a wider range of devices, then use Lambdatest.
Read full review
Open Source
React is a JavaScript user interface construction library that works well for:
  • Developing web apps with dynamic and complicated user interfaces.
  • creating reusable UI elements that may be used in other applications.
  • creating single-page applications with dynamic content updates that don't require a page reload.
  • The Virtual DOM's effective updating mechanism allows it to handle large volumes of data updates.
React, on the other hand, might be less suitable for:
  • Websites that are simple, stagnant, and have no interaction. Other libraries or simple HTML, CSS, and JavaScript may be a better fit in such circumstances.
  • Web sockets may be a better choice for applications that need real-time updates, such as chat or gaming apps.
  • When creating mobile apps, React Native is a better option.
  • Server side rendering only, as React is designed to run on the client side.
Read full review
Pros
BrowserStack
  • Reliable cross-browser, cross-device testing
  • integration with JIRA to add screenshots directly to bugs etc
  • Live mobile device testing for an extra layer of confidence
  • Customer support has been very consistent and reliable
  • User interface is incredibly simple to use and easy to train new users on
Read full review
Open Source
  • React is fantastic for building performant user interfaces. Our web app is snappy and great for our customers.
  • React has the philosophy of doing one thing and doing it well which is the view layer of the application. This makes it incredibly intuitive and flexible for developers to use.
  • React has lead the way in being able to write modular and structured code. It is a drastic improvement since the days of spaghetti jQuery code.
  • React has an unmatched community. The amount of tools and libraries available is fantastic, and there plenty of solutions available online for common problems.
Read full review
Cons
BrowserStack
  • The parallel execution is limited and is still in beta state. Once it starts to work properly, it will be more helpful
  • The paid subscription can be a bit of an issue for some individuals or organizations as the charges are a bit too much
  • Some of the devices do not open or load properly and are not available to test at times
Read full review
Open Source
  • Debugging React is challenging. Bugs in react code generate stack traces internal to React and it is often totally unclear how it relates to the code you actually wrote.
  • Relating your React elements to corresponding DOM elements is difficult. The intentional separation of virtual and actual DOM also makes it difficult to map the elements to the structures in the DOM. This is partially ameliorated by the use of the React dev tool, which provides a DOM-like view of the React elements, but the tool still does not provide a direct correspondence with the DOM that is often necessary to figure out why something isn't right.
  • Because JSX is React-specific and not a language feature, a special compilation process is necessary to convert JSX code to normal JS. Coming from a C++ background, compiling things doesn't bother me, but many JS developers are used to a less structured development.
Read full review
Likelihood to Renew
BrowserStack
It's almost the 3rd year for us and it's renewal time for us. So yes, we are already discussing how many licenses we need to increase as users are increasing internally. So it's 100% sure that we are already planning renewal this year as well BrowserStack with live and app automate.
Read full review
Open Source
No answers on this topic
Usability
BrowserStack
So many options that it can be a little overwhelming, but the core functions are easy to find and use and it's usually not too hard to figure things out for the more complex tasks. Very easy to boot up a device and a specific browser from the dashboard to begin a manual website test.
Read full review
Open Source
React is just a bit of a different animal. I was avoiding it for the longest time. I thought for sure I would land on Vue or something else with a more approachable and familiar appearance. But after taking an online course in React, I started realize what people were raving about (and complaining about) and decided to implement it at our office for one of our products.
Read full review
Reliability and Availability
BrowserStack
I rated BrowserStack's availability a 10 because it is consistently reliable, with minimal to no downtime or unplanned outages. The platform is accessible whenever needed, ensuring uninterrupted testing. Its robust infrastructure and proactive monitoring ensure a seamless experience, allowing us to meet deadlines without delays caused by availability issues and all
Read full review
Open Source
No answers on this topic
Performance
BrowserStack
The tests are fast considering the fact that they're Appium tests. I've seen tests reliably pass or fail when they're supposed to, with next to zero issues on the BrowserStack side of things. Tests launch only seconds after I kick off them off from my CLI.
Read full review
Open Source
No answers on this topic
Support Rating
BrowserStack
I've not had much direct interaction with the BrowserStack support team. The help and community are great and we've not run into any issue that has really required us to reach out. I guess having a stable and easy to use system means you may never need to contact support.
Read full review
Open Source
Since it's open-source and very popular, the community support for React and related tools and libraries is excellent. There are a lot of people using the same tools, and so issues tend to get fixed quickly and "recipes" are easy to come by. And since it's backed by Facebook, they have a dedicated engineering team working on the progression of React.
Read full review
In-Person Training
BrowserStack
Yes, it was online training on meet, and trainer looks like skilled and technical strong, he has covered end to end all the features and he has answers all the queries. because of this trainings we are able to implement it by our own in the organization, thank you for support and training.
Read full review
Open Source
No answers on this topic
Online Training
BrowserStack
It was a quick training from the support of browserstack, it was nice and easy to understand, thanks again for the support given by the team. and regularly I used to receive mails for training from support for any new feature they launch, I was able to spread same training to all my team and dev.
Read full review
Open Source
No answers on this topic
Implementation Rating
BrowserStack
I rated the implementation satisfaction an 8 because while it went smoothly overall, there were some challenges during the initial learning phase and integration with existing tools. Key insights include the importance of providing sufficient training upfront and ensuring seamless integration with other systems to minimize disruptions and improve adoption speed.
Read full review
Open Source
No answers on this topic
Alternatives Considered
BrowserStack
BrowserStack products has been found better for low code automations and visual regression techniques. We have been struggling to maintain the API endpoint sanity tests and writing a lot of code for them while releasing the builds, while we chose BrowserStack accessibility solutions, we found it a way easier than we thought and worked it up.
Read full review
Open Source
While this is a widely contested debate with various blog posts and benchmarks all over the place, its really a personal choice to determine what works for the team. Coming from a Angular 1.x background, I decided to try a new framework when Angular 2.x was announced and at that time React is gaining popularity and Vue hasn't taken off yet. Compared to Angular 1.x and Vue (hybrid of React and Angular) that split the logic from the html templates, I loved the way React breaks code into components using the jsx syntax. In my mind, this allows for cleaner components and easier maintenance
Read full review
Contract Terms and Pricing Model
BrowserStack
No Vendors were involved, directly dealt with Browserstack
Read full review
Open Source
No answers on this topic
Scalability
BrowserStack
I may not be the best person to answer this as I am only using it for 1 department and at 1 site but will still try my best As far as Scalability for Devices for Mobile Automation is concerned, it gets a Solid 10, as the users can run cases on upto 10 device parallel and also have the best choices of devices to choose
Read full review
Open Source
No answers on this topic
Professional Services
BrowserStack
Not used
Read full review
Open Source
No answers on this topic
Return on Investment
BrowserStack
  • It reduced the cost of buying multiple devices as we have multiple devices access in it
  • Easily accessible from anywhere due to it cloud availability
  • Introducing this to our client also helped us in building trust as well as winning their confidence during deliverables
Read full review
Open Source
  • Our web applications now run much faster because the whole page doesn't reload
  • We spend less time developing UI components because a lot of them are readily available on NPM
  • We don't have to optimize apps for multiple browsers since React natively supports it.
Read full review
ScreenShots

BrowserStack Screenshots

Screenshot of Screenshot of Screenshot of Screenshot of Screenshot of Screenshot of