我的webpack.config.js在这里出了什么问题,因为它没有排除node_modules。我在以前版本的网络包中发现了与此问题类似的帖子,但由于语法不同,修补程序不起作用......
wait.Until(ExpectedConditions.ElementIsClickable(By.Id("abc")))
答案 0 :(得分:1)
您正在使用需要pre
值的规则。
您的代码应为:
module.exports = {
entry: "./foo.js",
output: {
filename: "./bar.js"
},
module: {
rules: [
{
test: /\.js$/,
enforce: 'pre', // updated value
exclude: /node_modules/,
use: [
{ loader: 'jshint-loader' }
]
}
]
}
};
来源:https://webpack.js.org/configuration/module/#rule-enforce