我如何确定特定排毒测试在哪个平台上 运行?

How do I determine which platform a specific detox test is running on?

当使用 class 名称的排毒匹配器时,即 by.type(className) https://github.com/wix/Detox/blob/master/docs/APIRef.Matchers.md#bytypeclassname

是否可以根据测试 运行 在 (ios/android)

上的平台更改 class 名称

例如element(by.type(className)) 变为:

使用device.getPlatform()确定当前设备平台。

文档: https://github.com/wix/Detox/blob/master/docs/APIRef.DeviceObjectAPI.md#devicegetplatform

示例: https://github.com/wix/Detox/blob/240a709c609addf8b67e2ed6b91cba1293ad76c8/detox/test/e2e/03.actions.test.js#L124