Skip to main content

Version 2.9.1

Support for customHeaders in HyperExecute

You can now inject custom HTTP headers into your test sessions using the customHeaders capability. This gives you more control over outbound requests made during test execution, especially when working around network security controls like firewalls or header-based access restrictions.

caps.setCapability("customHeaders", new HashMap<String, String>() {{
put("x-px-access-token", "testuil");
}});

These headers are attached to your outbound HTTP requests and can help:

  • Authenticate against secured endpoints
  • Pass custom metadata
  • Work around network/firewall restrictions

📘 Refer to our detailed documentation, Custom Headers for detailed explanation and examples.

Test across 3000+ combinations of browsers, real devices & OS.

Book Demo

Help and Support

Related Articles