Logs an informational message to the script output panel.
The message to log.
Console.Log("step 1 complete");Console.Log("value: " + myVar); Copy
Console.Log("step 1 complete");Console.Log("value: " + myVar);
Logs a warning message to the script output panel.
The warning text.
Console.Warn("retrying: " + attempt); Copy
Console.Warn("retrying: " + attempt);
Logs an error message to the script output panel.
The error text.
Console.Error("window not found"); Copy
Console.Error("window not found");