Skip to main content
A newer version of this page is available. .

FAQ

  • 14 minutes to read

General Questions

I have heard that TestCafe Studio does not use Selenium. How does it operate?

Unlike most testing solutions, TestCafe Studio is not built on Selenium. This allows us to implement features you cannot find in Selenium-based tools (for example, testing on remote devices without installing plugins, auto-wait mechanisms, etc.).

TestCafe Studio uses a URL-rewriting proxy which allows it to work without the WebDriver. This proxy injects the driver script that emulates user actions into the tested page.

What is the difference between TestCafe Studio and open-source TestCafe?
  TestCafe TestCafe Studio
No need for WebDriver, browser plugins or other tools
Cross-platform and cross-browser out of the box
Write tests in the latest JavaScript or TypeScript
Clear and flexible API supports ES6 and PageModel pattern
Stable tests due to the Smart Assertion Query Mechanism
Tests run fast due to intelligent Automatic Waiting Mechanism and Concurrent Test Execution
Custom reporter plugins
Use third-party Node.js modules in test scripts
Integration with popular CI systems  ✓*
Visual Test Recorder  
Interactive Test Editor  
Automatic Selector Generation  
Run Configuration Manager  
IDE-like GUI  

* You can use the open-source TestCafe test runner to integrate tests with CI systems.

What is the difference between TestCafe Studio and TestCafe v2015.1?

You can find this information in our blog.

Which browsers does TestCafe Studio support? What are the exact supported versions?

You can find a list of supported browsers in our documentation. TestCafe Studio is tested against the two latest versions of each browser (except browsers whose versions are specified explicitly in this list).

However, TestCafe Studio should work properly with browsers that support HTML5 and released in the last three years.

What is the current version of TestCafe Studio? How to update it?

To view the current version number:

  • MacOS: Open the TestCafe Studio menu and select the About command.
  • Windows and Linux: Open the Help and select the About command.

This invokes the dialog that displays version information.

The About dialog

To download the latest version, visit our site.

For Windows and MacOS: When a newer version of TestCafe Studio is available, the notification appears on the main toolbar. Click the Install link to update to this version.

Update version

I found a bug. How do I report it?

You can report a bug in our Support Center.

Testing

What is the difference between two test types: recorded tests and test scripts?
  Recorded Test Test Script
Consists of ... Test actions JavaScript or TypeScript code
How to create? Use the visual recorder Write code in the Code Editor
How to edit? * Use the recorder to add new actions to an existing test
* Add, update, and remove test actions in the Test Editor
Use the Code Editor
How to convert to another test type? Can be converted to JavaScript Cannot be converted to recorded tests
File extension .testcafe .js, .ts
Can I use the Visual Recorder for test scripts?

You cannot record a test script directly. However, you can record a test with visual steps--a recorded test, then convert it to JavaScript.

For more information about the difference between recorded tests and test scripts, see the previous question.

How to make sure that my test is being recorded correctly?

When you interact with a webpage during recording, TestCafe Studio automatically adds corresponding actions to a test. You can view them in the Test Editor and check if they are what you need. For example:

  • TestCafe Studio generates a set of element selectors for a target element in a test action and adds one of them to the action parameters. Make sure that this element selector fits your needs, or select another one right during recording.

    The set of element selectors

    You can also view the element that corresponds to this selector on the webpage. See Elements Highlighting.

  • While recording, you can perform some extra actions that are unnecessary for your test, for example, clicks or key presses. TestCafe Studio records them too. These actions can increase the test duration and affect the test result. You can delete them from the test during recording.

After the test is recorded, run it to ensure it passes.

Can I use third-party modules in tests?

You can use third-party modules in recorded tests and test scripts. To import modules in the test script, use the import statement.

import fs from 'fs';

fixture `fixture`
    .page('http://localhost/testcafe/');

test('test', async t => {
    const filePath = 'filepath.js';

    await t.expect(fs.existsSync(filePath)).ok();
});

Use fixture.clientScripts or test.clientScripts in test scripts to inject a module into the tested page. You can use this module inside client functions and selectors.

test
    // Inject jquery.js as a client script
    .clientScripts('./jquery.js')
    ('test', async t => {
        const clientFunction = ClientFunction(() => {
            // You can use $ here
            return $('div').text();
        });

        const text = await clientFunction();
    });

In recorded tests, add the Run TestCafe Script action and use the require method to import a Node.js module on the server side.

t.eval in a custom script

How to clear browser cookies and local storages between test runs?

There is no need to do this. TestCafe Studio clears browsing data before starting a test: cookies, local storages, and user profiles.

How to create user roles?

User roles are not supported in recorded tests. However, you can convert your test to a test script and use user roles as described here.

How to intercept HTTP requests?

Intercepting HTTP requests are not supported in recorded tests. However, you can convert your test to a test script and handle HTTP requests as described here.

Troubleshooting

I installed TestCafe Studio, but it doesn't start.

On Linux, run TestCafe Studio from the command line. Open the directory where you copied the executable and run the following command:

./testcafe-studio

You should use the command line because certain Linux file managers, including GNOME's Nautilus, do not support launching raw binaries.

Use debug mode. Start TestCafe Studio from the command line with the debug flag:

Windows

"C:\Users\<username>\AppData\Local\Programs\TestCafe Studio\TestCafe Studio.exe" --debug

macOS

cd /Applications/"TestCafe Studio.app"
Contents/MacOS/"TestCafe Studio" --debug

Check if the console contains error messages. If so, take a screenshot and submit it to the Support Center.

Check PATH. On Windows, check if the %PATH% environment variable contains paths to system32 and powershell.

Check your antivirus. Antivirus software may block TestCafe Studio's first start. Launch TestCafe Studio once again. This action usually resolves the issue.

I cannot complete registration.

To work around issues that occur during online registration, register TestCafe Studio offline, and file a ticket that describes the issue in the Support Center.

The browser is not launched or TestCafe Studio cannot connect to the browser.

Check your firewall. First, make sure that your firewall does not block the ports TestCafe Studio uses. TestCafe Studio chooses free ports automatically. You can specify custom ports in the Preferences/Settings Dialog and then allow connection to these ports in the firewall settings.

Check your proxy server. Another reason for this problem can be the proxy server you use to access the Internet. If your network is connected to the Web through a proxy, specify the proxy URL in the Preferences/Settings Dialog.

If the issue persists, submit a ticket to the Support Center.

The browser opens an empty page whose URL ends with 'about:error' when I start recording.

Open the URL. Click Open Tested Page in the Test Editor toolbar or the page URL in the Fixture Editor. The website may be unavailable or the URL may be incorrect.

Use the recording browser. Try opening the tested page in the browser you use for recording if this browser is not your default.

Check the network configuration. Ensure that the hostname, port and proxy server settings are correct as described in the previous question.

Try a different test. Run a different test against the same page in TestCafe Studio and open-source TestCafe. Check if it runs without errors.

If the issue persists, submit a ticket to the Support Center.

I cannot record or run tests on macOS.

Open System Preferences > Security & Privacy > Privacy.

TestCafe Studio requires the following permissions:

  • Automation permission for all installed browsers, Automation Permission
  • Screen Recording permission (requires application restart). Recording Permission

If these permissions are already enabled, uncheck the check boxes, then check them again, and restart TestCafe Studio. If this does not fix the issue, execute the following command to reset the permissions:

tccutil reset All com.devexpress.testcafestudio

MacOS will display dialog boxes with permission requests again when you run TestCafe Studio.

If the issue persists, submit a ticket to the Support Center.

When I start recording, test steps are not replayed as they are during test run.

After you start recording new steps in a test, TestCafe Studio replays the existing test actions. The playback is performed according to Record Configuration settings. Check these settings and adjust them so they match the Run Configuration.

TestCafe Studio does not fail when JavaScript errors occur on the page during recording. During test runs, this is controlled by the Fail if a JavaScript error occurs setting in the Run Configuration.

When I run a test, I get an unexpected error.

The most common reason for this is a JavaScript error on the tested page. Load this page in the browser, open the console and see if the page has any errors. In case there are errors, you can either fix them or disable the Fail if a JavaScript error occurs setting in the Run Configuration to skip them.

A test fails because TestCafe Studio could not find the required page element.

This happens when one of the selectors used in recorded test actions or scripts does not match any DOM element, the matched element is not visible, or the element's target part is occluded.

To determine the cause of this issue, do the following:

Recorded Tests

  1. Open the test run report, expand the failed test and click Go to the failed action. Recorded test report
  2. Click Record button Record test actions to play back this test with Visual Test Recorder. When TestCafe Studio tries to execute the step that fails, it throws an error.
  3. You can focus the selector input to highlight elements that match this selector in the browser (TestCafe Studio does not scroll the page though). Do this after each of the following steps to check if the selector has been fixed.
  4. You can use the Element Picker to re-generate the element's selector (the current selector is rewritten). Click Pick a target element, select the target element in the browser, and re-run the test.
  5. If the selector matches several elements, test actions and assertions are performed with the first element in the matched set. Append nth(0) to the selector and check whether the target element is highlighted. If it is not, add selector methods to pick the right element.
  6. Check that the target element is visible and the browser window is scrolled to this element's position. If the page isn't scrolled to the target element (but you can scroll it to the element manually), it may indicate that the page uses virtual scrolling. In this instance, add the Hover action to emulate hover over an element or area where virtual scrolling is triggered.
  7. Use the browser's Developer Tools to check if the target element is inside an <iframe>. If it is, add the Switch to Iframe action before the failed step to switch the browsing context (use the Element Picker to select the <iframe>). Ensure that the selector in the Switch to Iframe action identifies the correct <iframe>.
  8. The target element may not be visible due to layout adaptivity. Try resizing the browser window and focus the selector input each time the layout changes. If the target element is displayed at only a certain width, use the Maximize Window and Resize Window actions to set a sufficient window size.
  9. In rare cases (complex animations or event handling), increased test speed during test run can cause failures. Specify a smaller value for the Speed option in the record or run configuration to slow down the test.

Test Scripts

  1. Open the test run report and expand the failed test. The error message in the test run report indicates which selector has failed. Test script report
  2. Add the t.debug method before this selector to stop test execution before it reaches this point.
  3. Run the test and wait until the browser stops at the breakpoint.
  4. After this, use the browser's Developer Tools to check that:
    • the element is present on the page;
    • the element and its parents are visible (TestCafe considers it visible if it does not have display set to none, visibility set to hidden or the zero width or height);
    • the element's part targeted by the action is visible (the center of the element, or a point specified by the offsetX and offsetY parameters);
    • the element is not in an <iframe> (if it is, use the t.switchToIframe method to switch to the appropriate <iframe>).
  5. Try running the test in full screen. Use the t.maximizeWindow and t.resizeWindow actions to control the browser window size. If the test passes, it indicates that your webpage hides the target element when the window is resized to smaller dimensions.
  6. Decrease the Speed value in the run configuration to slow down the test.

You can also update TestCafe Studio to the latest version to see if the problem persists.

TestCafe reports that a request has failed.

When TestCafe does not receive a successful response from a server, it outputs the following error:

A request to https://www.example.com has failed.
Use quarantine mode to perform additional attempts to execute this test.

You can use quarantine mode to complete the tests if this problem occurs infrequently.

However, we recommend that you determine the cause of this issue and address it.

This error can occur in the following situations:

The Web server is not responding

Check if the Web and DNS servers are online and configured to accept requests to this URL.

Unstable or improperly configured network connection

  • Check the network connection's settings.
  • Ensure that your network equipment works properly. If possible, establish a direct connection to the Internet/Web server.
  • Check the proxy server's settings or try a different proxy server.
  • Use a VPN.
  • Connect to a different network.
When I edit a test during recording in Safari, TestCafe Studio lags and the browser reflects changes with a delay.

This can happen when the browser window is inactive or collapsed because macOS throttles browser windows in the background.

To fix this issue, keep the browser window at least partially visible during recording. If this is not possible, follow these steps to disable throttling:

  1. Ensure the Terminal has full access to the file system. Open System Preferences > Security & Privacy > Privacy > Full Disk Access and put a tick next to Terminal.
  2. Enable the Debug menu in Safari with the following command:

    defaults write com.apple.Safari IncludeInternalDebugMenu 1
    
  3. Restart Safari.

  4. Open the Debug menu and click Miscellaneous Flags > Disable Hidden Page Timer Throttling.
I am stuck debugging failed tests. Can I obtain more information that would help me identify issues?

TestCafe Studio has the following features that facilitate identifying error causes:

If you are unable to diagnose the issue with these approaches, you can run tests in the open-source TestCafe to record a video of the test run or take full-page screenshots.

Install TestCafe from npm and run tests from the command line. In testcafe command's arguments, you can do the following:

You can also specify screenshot path patterns to use values like date, time, or browser name in subdirectory names.