Skip to content

1.0.1 - Release Highlights

Deprecation notices

IFirefoxOptions.getBinaryOrNull() deprecated

The getBinaryOrNull() method on IFirefoxOptions has been deprecated and marked for removal as FirefoxBinary has been removed from Selenium 4.

Action required: Remove any calls to getBinaryOrNull() from your test code. If you were using the returned FirefoxBinary to configure the Firefox executable path, use IFirefoxOptions.setBinary(Path) or IFirefoxOptions.setBinary(String) instead.

Changes affecting the Galasa Service

  • A new POST /runs/portfolios REST API endpoint resolves a portfolio of test classes server-side. Clients supply a selections array, where each entry names a stream and optional filters (bundle, package, test name, class, tag, with optional regex mode), and the server returns all matching classes from the stream's test catalog. If no filters are provided for a stream, all classes in that stream's catalog are returned. The response is stateless; no portfolio resource is persisted. See the Runs API reference for more details.