BrowserOps Journey Preflight
Generate a route-check script and validate target URLs before sending a real run request to BrowserOps.
route-check.js
const target = 'https://sandbox.platphormnews.com';
const url = new URL(target);
console.log(JSON.stringify({valid: url.hostname.endsWith('.platphormnews.com'), target}, null, 2));