Skip to main content

Validation and troubleshooting

Paxter has no standalone verify or database-validation command. Use these checks before relying on a workflow.

Validate the project

dotnet build Paxter.sln --configuration Release
dotnet test Paxter.sln --no-build --configuration Release

Validate a workflow safely

  1. Use a dedicated test environment and non-sensitive test data.
  2. Start with Headless: true and NeedVideo: false.
  3. Set Verbose: true in your local configuration when troubleshooting.
  4. Review the generated HTML report and output.json after each run.

Common errors

Message or symptomLikely causeWhat to check
Configuration file not foundpaxter.yaml is not in the current working directory.Run from the configuration directory or change into it first.
YAML test file not foundThe path supplied to run does not exist.Use an absolute path or verify the relative path.
Browser launch failurePlaywright browser binaries are unavailable or ChromiumPath is invalid.Run paxter setup, or leave ChromiumPath empty to use Paxter's managed browser.
Unsupported conversion lineThe converter does not recognise that Playwright statement.Review the conversion log and add a supported action manually.