--- title: TestProject Reviews meta\_title: 'TestProject Reviews 2026: Details, Pricing, & Features | G2' meta\_description: Filter 14 reviews by the users' company size, role or industry to find out how TestProject works for a business like yours. aggregate\_rating: rating\_value: 4.7 review\_count: 14 scale: '5' date\_modified: '2026-08-07' parent\_category: name: DevOps url: https://www.g2.com/categories/devops ---

# TestProject Reviews & Product Details

TestProject is the world's first 100% free test automation platform for Web, Android, iOS and API testing, trusted by over 150,000 users in the testing community. TestProject helps testers and developers ensure quality with speed, by eliminating maintenance & setup hassles and empowering Selenium & Appium with AI self-healing technology. No matter your skillset, TestProject has all the tools you need to ensure a top-notch automation experience, using advanced codeless features or open source SDK compatible with native Selenium APIs. To top it off, you also get to leverage their useful Addons library, out-of-the-box beautiful test reports, seamless integrations into your CI/CD pipelines, worldwide team collaboration options to boost efficiency, and all of this at no cost. By fostering a collaborative community that can come together, as individuals and in teams, TestProject is shaping the future of software testing and helping teams overcome testing challenges with ease and deliver flawless products. Founded in 2015 and acquired by Tricentis in 2019. To learn more, visit https://testproject.io/

* * *

Seller
[TestProject](https://www.g2.com/sellers/testproject)
Discussions
[TestProject Community](https://www.g2.com/products/testproject/discuss)
Languages Supported

English

Overview by
Karen Teboulle (COO at TestProject)

Show More

## Pricing

Pricing provided by TestProject.

### Free Forever

$0.00

[
View More Pricing Information
](https://www.g2.com/products/testproject/pricing)

## Top-Rated Alternatives

[

 ![Katalon](/assets/transparent-ad5be28fbcd25b7b08d2cebe1d957125437fb5407d75ee717965ad22c8808791.gif "Katalon")

Katalon

4.4/5(225)

](https://www.g2.com/products/katalon/reviews)

[

 ![Cypress](/assets/transparent-ad5be28fbcd25b7b08d2cebe1d957125437fb5407d75ee717965ad22c8808791.gif "Cypress")

Cypress

4.7/5(108)

](https://www.g2.com/products/cypress/reviews)

[

 ![TestComplete](/assets/transparent-ad5be28fbcd25b7b08d2cebe1d957125437fb5407d75ee717965ad22c8808791.gif "TestComplete")

TestComplete

4.2/5(96)

](https://www.g2.com/products/testcomplete/reviews)

[
View All Alternatives
](https://www.g2.com/products/testproject/competitors/alternatives)

## User Insights

Average based on 14 real user reviews.

Implementation Time

1 month

[Log in to unlock pricing and user insights](/login)

 ![Kim H.](/assets/transparent-ad5be28fbcd25b7b08d2cebe1d957125437fb5407d75ee717965ad22c8808791.gif "Kim H.")
KH

Kim H.

Software test analyst/test automation analyst

7/17/2021

"A test analysts opinion and comparison of testproject as a new (~2-3 weeks) user."

4/5

What do you like best about TestProject?

Very fast to get it up and running. For most (not all) web browser object (element) identification, even the recorded elements are pretty robust and will be repeatedly found in playbacks on other browsers machines and days or weeks after the recording. That's something many automation recorders lay claim to and the first time I have ever seen it actually work!

It also has a very flexible UI/keyword type automation tool that can allow you to create some surprisingly robust and complex tests without once writing any code.

Object identification is very good. Disclaimer I have only used with web browser so cannot comment on the above with regards to iOS and Android testing.

Support has been great so far. Only been using a couple of weeks so I still haven't figured out whether the great support is part of the free plan or a subscription service. Everything I find about pricing just says free, free free lol... if there is a cost for ongoing support which is modest I would consider paying it. If the support I a, getting now is free, then it is comparable to the paid support I have accessed through other automation vendors when on contract at organisations where they were paying a significant amount for a support contract. Again disclaimer I am in the Southern Hemisphere, so unless I want to be up all night any support we tend to get is usually via email due to time zones so maybe paid support for other automation tools like test complete if I were in the US would be better than it has been here, but as it is TestProject support has been amazing. I can't figure out where to buy it is it is paid for (they make it clear the project is always free but not sure if support is or not?) but the level of support I have gotten in the first couple of weeks is on a par with the better quality of the expensive paid support at other automation vendors. Review collected by and hosted on G2.com.

What do you dislike about TestProject?

Too early to say. I wish it had a built in IDE as getting the sdk set up and working in the main ides is not straightforward. I also have not yet been able to import a test back into the TestProject runner successfully (tried to import a grade package and a .jar file, in both cases the actual code was simply TestProject exported code with a couple of steps removed and nothing new added as I was simply testing the import export feature and not my ability to write any meaningful code!). It seems like they have coded the agent to cover a lot of the dependencies for test automation so hopefully someone contributing to TestProject will do the next thing (imho) and create a lovely TestProject IDE in the cloud so we can take all out tests and painlessly convert them to and from code. As far as writing code and syntax, I can't comment as I am a new user and still in the pain stage of getting the ide working and figuring out the dependancies and requirements to make a project that I can export and have TestProject accept it.

As with a lot of IDEs, I feel like learning the coding language and the syntax, is a small thing, compared to getting the damn ide set up properly!

So I hope one day they put in a test complete cloud based ide where you can just choose your language and wollah... everything is set up and good to go.. I personally would pay a small subscription for that feature. Review collected by and hosted on G2.com.

What problems is TestProject solving and how is that benefiting you?

Too early for sure, basic stuff is very easy and quick to get working. The UI tool at first didn't appear to have anything similar to your standard if/else or switch function, well it does but it works a little differently.

Using a cab file for data driven testing is very quick and painless to get working at a basic level but if you have tests calling sub tests you either have to pass the parameter from a local variable on the master test to a global variable and have the s test access it from there (which means writing a whole lot of "set value of parameter" steps) or if you write all your steps in one big ole master test then when you ar sure it is all complete and working properly you can select steps and choose to group them into a sub test. When you do that it automatically detects any local parameters you had been using in those steps and gives you the option to pull those values through from the master. However if you add the sub test separately (ie didn't write its steps in the master test) you don't seem to get that option so have to call global parameters and then you end up with either a hodge lodge of some tests pulling thru local param's from the master and others using global Params that you have to add steps to pass values to in the master... or for consistency, you just set up every single variable(parameter) you will use in the test as a local parameter in the master test and the. Pass every single local variable to a global parameter (so you have to create each global and then write steps for passing each local parameters value to it at the start of your master test.

There may well be ways to code around this that I haven't found. But if there are I also haven't found any documentation on how the built in csv processing works, which is a pity as I imagine if there were then rather than trying to code all the to and fro'ing of data from csv to local or global parameters you could utilise built in methods that they must have somewhere to run the built in csv data driven test option? Again this might be there and I just haven't found it yet lol

Overall though, I am finding this a very well thought out, very capable automation option, that is on a par if not significantly better than some of the paid options that cost many thousands of $$per seat.

It's also great that it can be all cloud based so you can write tests and anyone else in your team can run them from wherever on whatever machine, they just need the agent. And it also seems to automatically just make it all work for chrome, Firefox and so on without any tweaking needing to be done to make browser tests u created and debugged on chrome work on ff etc. Review collected by and hosted on G2.com.

Show More

Validated ReviewerSource: Organic

 ![Verified User in Information Services](/assets/icons/anonymous-avatar-purple-4ae1032bdb50ee5682003170c8184aee790d25958bd397abbd384ba52c596a7b.svg "Verified User in Information Services")
AI

Verified User in Information Services

Mid-Market (51-1000 emp.)

8/26/2019

"For Beginner it is very good tool."

4/5

What do you like best about TestProject?

To Begin any test , from any respective steps.

Reports which is usefull Review collected by and hosted on G2.com.

What do you dislike about TestProject?

take time to perform each action.

some time device is disconnected in middle of test cases. Review collected by and hosted on G2.com.

What problems is TestProject solving and how is that benefiting you?

Manual tester will interact with thils tool and instead of writing test cases manually , they perform that action and export. Review collected by and hosted on G2.com.

Show More

Validated ReviewerSource: Organic

## Questions about TestProject? Ask real users or explore answers from the community

Get practical answers, real workflows, and honest pros and cons from the G2 community or share your insights.

[
Ask about TestProject
](https://www.g2.com/products/testproject/discussions/new)

 ![Verified User](/assets/icons/anonymous-avatar-purple-4ae1032bdb50ee5682003170c8184aee790d25958bd397abbd384ba52c596a7b.svg "Verified User")
G2

Verified User
•
Last activity over 6 years ago

What is stored in the cloud?

1 Upvote

1

[
Join the conversation
](https://www.g2.com/discussions/what-is-stored-in-the-cloud)

 ![Verified User](/assets/icons/anonymous-avatar-purple-4ae1032bdb50ee5682003170c8184aee790d25958bd397abbd384ba52c596a7b.svg "Verified User")
G2

Verified User
•
Last activity over 6 years ago

What are Addons?

1 Upvote

1

[
Join the conversation
](https://www.g2.com/discussions/what-are-addons)

[
View all Discussions
](https://www.g2.com/products/testproject/discuss)

## Pricing Options

Pricing provided by TestProject.

### Free Forever

$0.00

[
View More Pricing Information
](https://www.g2.com/products/testproject/pricing)

TestProject Comparisons

 ![Product Avatar Image](https://images.g2crowd.com/uploads/product/image/small_square/small_square_9c5d258946e509892bee4bd0a925de9b/katalon.png "Product Avatar Image")

Katalon

4.4/5(225)

[
Compare Now
](https://www.g2.com/compare/katalon-vs-testproject)

 ![Product Avatar Image](https://images.g2crowd.com/uploads/product/image/small_square/small_square_dfce442a35b56255f965ca819c13e0e3/tricentis-testim.jpeg "Product Avatar Image")

Tricentis Testim

4.5/5(54)

[
Compare Now
](https://www.g2.com/compare/testproject-vs-tricentis-testim)

 ![Product Avatar Image](https://images.g2crowd.com/uploads/product/image/small_square/small_square_7d548ace5d2102552d2a71a4200d8710/testcomplete.png "Product Avatar Image")

TestComplete

4.2/5(96)

[
Compare Now
](https://www.g2.com/compare/testcomplete-vs-testproject)

##### Categories on G2

[Software Testing](https://www.g2.com/categories/software-testing)[Automation Testing](https://www.g2.com/categories/automation-testing-tools)

##### Explore More

[What are the best pharmacy management systems for quick implementation without sacrificing prescription tracking?](https://www.g2.com/discussions/what-are-the-best-pharmacy-management-systems-for-quick-implementation-without-sacrificing-prescription-tracking)[Which web font marketplace pricing models offer the best value for multiple font licenses across large teams?](https://www.g2.com/discussions/which-web-font-marketplace-pricing-models-offer-the-best-value-for-multiple-font-licenses-across-large-teams%20)[What are the highest rated cloud kitchen management platforms for independent restaurant brands wanting to launch ghost kitchen operations within 30 days?](https://www.g2.com/discussions/what-are-the-highest-rated-cloud-kitchen-management-platforms-for-independent-restaurant-brands-wanting-to-launch-ghost-kitchen-operations-within-30-days)

[Which cloud directory solution is the most flexible for a company running a multi-cloud environment across AWS, Azure and GCP that needs unified access control?](https://www.g2.com/discussions/which-cloud-directory-solution-is-the-most-flexible-for-a-company-running-a-multi-cloud-environment-across-aws-azure-and-gcp-that-needs-unified-access-control)[What is the best payroll software for small businesses?](https://www.g2.com/discussions/what-is-the-best-payroll-software-for-small-businesses)[How does Trintech leverage AI for reconciliation?](https://www.g2.com/discussions/how-does-trintech-leverage-ai-for-reconciliation)

[Show MoreShow Less](javascript:void(0);)