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).

OSSupported versionInstallerDownload (1.182.0)
WindowsWindows 10 & 11 (64-bit only).msiDownload
MacMacOS 12, 13, 14 and 15 (Intel & Sillicon).appDownload
LinuxAll major distros (x86_64 architecture).AppImageDownload

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:

  1. Download Testfully for Mac.
  2. Unzip the Testfully.app.zip file.
  3. Move the Testfully.app file to the Applications folder (more below).
  4. Open the app.

A note on Applications folder

MacOS comes with two Applications folders:

LocationDescription
/ApplicationsSystem-wide Applications folder. Apps installed here are available to all users.
~/ApplicationsUser-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 Applications folder of your choice (/Applications or ~/Applications).
  • Open Terminal and run the following command to clear the quarantine attribute:
# if Testfully is in /Applications
sudo xattr -dr com.apple.quarantine "/Applications/Testfully.app"
# if Testfully is in ~/Applications
xattr -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.

BrowserLatest VersionInstall
Chrome1.1.0Download
Firefox1.0.0Download
Microsoft Edge1.1.0Download
SafariComing 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 npm
npm install -g @testfully/cli
# or install using yarn
yarn global add @testfully/cli

To learn more about Testfully CLI, head to Testfully CLI article.