findElements(By)
这是我的./utils/configs:
StaleElementReferenceException
App.js和Utils文件夹处于同一级别。 IDE可以完美地找到导入,但是Xcode模拟器会抛出错误:
无法从import {test} from './utils/configs';
解析模块export const test = 'test-string'
:从./utils/configs
找不到模块/Users/riku/Documents/StreamrLabs/streamr-ios-location-poc/App.js
。实际上,这些文件都不存在:
./utils/configs
/Users/riku/Documents/StreamrLabs/streamr-ios-location-poc/App.js
似乎导入新模块会破坏Xcode / bundler。我的应用程序是博览会应用程序。
答案 0 :(得分:2)
文件应具有扩展名! (在这种情况下为configs.js)。
Xcode试图查找.js文件,并且这里没有扩展名!
(记录解决方案)