我正在使用wdio创建UI测试。 Wdio使用$
和$$
全局变量来搜索元素,例如:
private get logo() { return $("#logo") }
private get menuItems() { return $$("nav .nav-item") }
VSCode自动将全局$
识别为JQueryStatic<HTMLElement>
。 $$
与WebdriverIO.Client<WebdriverIO.RawResult<WebdriverIO.Element>>[]
一样正常工作。编译器没有问题,我们在项目中没有安装jQuery类型。
是否可以禁用本机类型,或强制VSCode仅使用package.json
中的类型?
答案 0 :(得分:0)
在设置的字段typescript.disableAutomaticTypeAcquisition
中,将其设置为true
。