Get a unique WDA port for the current worker. Uses base port 8100 and increments by worker number.
()
| 134 | |
| 135 | |
| 136 | def get_wda_port() -> int: |
| 137 | """ |
| 138 | Get a unique WDA port for the current worker. |
| 139 | Uses base port 8100 and increments by worker number. |
| 140 | """ |
| 141 | worker_info = get_worker_info() |
| 142 | return 8100 + (worker_info.worker_number or 0) |
no test coverage detected