我如何确定特定排毒测试在哪个平台上 运行?
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))
变为:
element(by.type('android.widget.ImageView'))
在 android
element(by.type('RCTImageView'))
在 ios
当使用 class 名称的排毒匹配器时,即 by.type(className)
https://github.com/wix/Detox/blob/master/docs/APIRef.Matchers.md#bytypeclassname
是否可以根据测试 运行 在 (ios/android)
上的平台更改 class 名称例如element(by.type(className))
变为:
element(by.type('android.widget.ImageView'))
在 androidelement(by.type('RCTImageView'))
在 ios