Download Testfully app & Testfully CLI
Testfully is available as both web and desktop apps with identical features and user experience. Testfully's Desktop App offers two solutions for storage: Testfully Cloud and Offline.
Download the Desktop app
Testfully's desktop app is available for Mac, Windows, and Linux
- The Windows app supports Windows 10 and Windows 11.
- The Mac app supports Mac OS 12, 13, 14 and 15 at the moment with plans to support Mac OS 11 soon.
Please use the below links to download the latest version (1.182.0).
| OS | Supported version | Installer | Download (1.182.0) |
|---|---|---|---|
| Windows | Windows 10 & 11 (64-bit only) | .msi | Download |
| Mac | MacOS 12, 13, 14 and 15 (Intel & Sillicon) | .app | Download |
| Linux | All major distros (x86_64 architecture) | .AppImage | Download |
Installing the Mac app
Testfully for Mac is distributed as a universal binary, making the app compatible on both Silicon and Intel chips. To install the app, follow the below steps:
- Download Testfully for Mac.
- Unzip the
Testfully.app.zipfile. - Move the
Testfully.appfile to theApplicationsfolder (more below). - Open the app.
A note on Applications folder
MacOS comes with two Applications folders:
| Location | Description |
|---|---|
/Applications | System-wide Applications folder. Apps installed here are available to all users. |
~/Applications | User-specific Applications folder. Apps installed here are only available to the current user. |
The choice of which Applications folder to use impacts Testfully's auto-update behavior. If your're unsure which folder to use, we recommend using the user-specific ~/Applications folder.
Testfully's auto update on Mac
When Testfully is installed in the system-wide /Applications folder, it requires admin privileges to update itself. When an update is available and the current user doesn't have admin privileges, Testfully will not be able to auto-update itself.
When Testfully is installed in the user-specific ~/Applications folder, it can auto-update itself without requiring admin privileges. We recommend installing Testfully in the user-specific ~/Applications folder if the current user doesn't have admin privileges.
App Translocation on Mac
If you open Testfully directly from the Downloads folder or any location other than /Applications or ~/Applications, MacOS may run the app in a sandboxed environment called App Translocation. This behaviour can lead to issues such as inability to auto-update the app.
To avoid App Translocation, always move Testfully to either the /Applications or ~/Applications folder before launching it for the first time.
Fixing App Translocation on Mac
If you have already opened Testfully from a location other than /Applications or ~/Applications, you can fix App Translocation by following these steps:
- Quit Testfully if it's running.
- Move Testfully to the
Applicationsfolder of your choice (/Applicationsor~/Applications). - Open Terminal and run the following command to clear the quarantine attribute:
# if Testfully is in /Applicationssudo xattr -dr com.apple.quarantine "/Applications/Testfully.app"
# if Testfully is in ~/Applicationsxattr -dr com.apple.quarantine "~/Applications/Testfully.app"This will remove the quarantine attribute and allow Testfully to run normally from the Applications folder.
Installing the Linux app
Testfully app for Linux relies on libfuse2 to work. If you're getting an error related to fuse2, please install the lib. Ubuntu users, please run sudo apt install libfuse2 to install libfuse2.
Use Testfully Web app
Head to app.testfully.io to access the latest version of Testfully.
You should know!
Due to the Cross-Origin Resource Sharing (CORS) policy of modern browsers and depending on your API implementation, you may get Network Error when using Testfully's web app to send requests. To bypass this issue, please install our browser extensions or switch to our desktop app.
| Browser | Latest Version | Install |
|---|---|---|
| Chrome | 1.1.0 | Download |
| Firefox | 1.0.0 | Download |
| Microsoft Edge | 1.1.0 | Download |
| Safari | Coming soon |
Download Testfully CLI
Using Testfully CLI you can run your requests and associated tests as part of your CI & CD pipelines. Install Testfully CLI globally using npm or yarn.
# Install using npmnpm install -g @testfully/cli
# or install using yarnyarn global add @testfully/cliTo learn more about Testfully CLI, head to Testfully CLI article.