-
Notifications
You must be signed in to change notification settings - Fork 18
Description
Description
Extend the AltDriver constructor in all AltTester Unity SDK language bindings (.NET, Python, Java, Robot Framework) to include a secureMode boolean parameter.
- If
secureMode=true, the driver client should connect viawss://instead ofws://. - This option should be available and behave consistently across all supported bindings:
- .NET, Python, Java, Robot Framework
Acceptance criteria:
- All AltDriver constructors accept a
secureModeboolean (defaulting tofalseif not specified). - When
secureMode=true, all connections usewss://protocol. - All relevant documentation is updated to reflect the new option.
Mocks
Not applicable (API/constructor change only).
Additional info
- Motivation: Secure WebSocket connections are increasingly required in CI/CD and cloud environments.
- Applies to: .NET, Python, Java, and Robot Framework bindings.