Wix provides several tools for testing and debugging the code in your site. You can start by testing your site in Preview mode before publishing. If you see errors or your site is not running as expected, there are more tools you can use to debug the code in your site:
Test your site by entering Preview mode. To preview your site:
Wix Studio: Either click the Run button in the code editor toolbar, or the preview button on the top right.
Wix Editor: Either click on the Run button in the code editor toolbar, or the Preview button in the Editor on the top right.
You can perform any actions that you would be able to perform on your live site. When testing your site, you can check if any errors appear in the Wix Developer Console.
When you've finished previewing and return to the Editor, interactions you had with your site are not maintained. Your site returns to the state it was in before you entered Preview mode. The only exception is your optional sandbox database.
If you interact with data from your collections, you will be using the optional sandbox (and not live) version of your collections. Changes to data that result from interactions with your site in Preview mode will persist in your optional sandbox database.
Note: Velo functionality is not available when you enter Preview mode from the Site Actions dropdown in the Dashboard.
Although your can view your pages and interact with your site and data in Preview mode, the site doesn't behave exactly as it does when published:
You can try out a test version of your published site on a small percentage of visitors using the Release Manager. This is helpful for testing functionality that only works on a published site without exposing that functionality to all site visitors.
The Wix Developer Console is available at the bottom of the page when you are previewing your site. The console displays information that is useful when debugging, such as errors, warnings, and other messages.
It also displays debug messages that you added to the code using any console method. If you are new to debugging code, click here to learn how to log messages to the console.
Each message displays the page where the relevant code can be found and a clickable link to the specific line of code that triggered the message. Note that even if Velo is not enabled, your code will run when you preview your site.
To view the Developer Console, open your site in Preview mode. The Developer Console appears at the bottom of the page.
If the console is minimized, click the arrow to expand it.
Click on the console menu bar.
Click Default View on the console menu bar, and then choose which kinds of messages you want to see.
Debugging code from the backend is challenging because you need to invest effort to trigger the code and test it, such as calling functions from the client side on a test page in your site. To save you time and effort, Velo enables quick testing of backend functions directly from the code editor. The output you see in the test tab is the same as the output you would see in the Developer Console if you previewed your site and triggered the function.
You can debug HTTP functions by adding console.log()
calls to them. The information you log appears in the function output when using functional testing (Wix Editor) and in your site's Logs.
Velo allows you to debug your site's code as you would any modern JavaScript web-based application, by using developer tools to set breakpoints, log to the console, and more. These tools are not part of Wix - they come with your browser. If you are new to debugging, learn how to log messages to the console.
You can debug:
Here are a few things you need to know before you start debugging:
You can open a copy of your site's client-side code files in the browser's developer tools.
Here are the ways you can locate your code:
Adding the debugger statement to your code halts code execution at that point and prompts your browser to display the code file in developer tools.
Add debugger;
at the point in your code where you want the debugger to run.
Open your browser's developer tools and browse to your published site. The Sources panel opens to your code file and points to the line where you added debugger.
Note the following when debugging certain Velo features:
Backend Code
HTTP Functions
Scheduled Jobs For test sites, when you schedule jobs in your site's backend, only the jobs scheduled in your published site run. The jobs scheduled in your test site revision do not run.
When you debug your code in the browser it looks just like your original source code. In reality, the code you write is not the actual code that is run. The usage of source maps means that you don't need to worry about what's going on behind the scenes. But if you're curious to know, this is what's happening.
Velo supports writing code using the ES2017 standard. But until this standard is fully implemented in all browsers, your code is transpiled from ES2017 code to ES5. Your code is also minified, and source files are combined to make their delivery from the server more efficient.
So the code that's actually being run on your site is transpiled, minified, and combined. You don't want to have to debug that generated code. You want to debug the code you wrote originally. That's where source maps come in.
A source map is a file that maps the lines of code that the browser is actually running to the lines in your original source code. When you want to debug some code, the source map lets you find the code in the original version that you wrote, even though the debugger uses the source map to run the corresponding generated code.
All this should happen without you having to do anything. If you’re having trouble, check your browser’s developer tools settings and make sure that source maps are enabled.
Wix's Logs tool allows you to debug your site by generating and tracking logs. You can access the Logs tool directly from Preview mode. To get to the Logs tool, click on Live Site Logs then Wix Logs in your Developer Console.
Notes
You can view logs in real time in the Wix Logs window. Simply add a console message to any code in your site, trigger the code in Preview mode or on your published site, and the log will appear in your Wix Logs window.
You can click the log to view more information:
For more robust log analysis, you can easily connect your Wix Logs to Google Cloud Logs, an external monitoring tool.
Learn more about:
If you're not familiar with logging messages to the console to debug your site, follow the instructions below to log messages to the Developer Console, Developer Tools, or to the Logs tool:
Add any console message to the code you want to debug.
For example, let's say you have a function called myFunc()
that performs an operation on a variable called myVar
. You want to check whether the function is being called and whether the operation on the variable is performed as expected. You can add the code below to your function. When the console message runs, the text within the quotes will be displayed, as well as the value of the myVar
variable.
In Preview mode or on your published site, perform whatever action will trigger myFunc()
.
View the message in your tool of choice (Developer Console, Developer Tools, or Logs) to gain insight on how your code is behaving.
Note: If you log nested data to the console only the first 5 levels will appear in detail. To get detailed information on more deeply nested items, log them directly.
wix-auth
elevate()
If you are receiving a 403 or FORBIDDEN error when you run a function, try using the elevate() function to bypass permissions.