自动测试中,输入框没有搜索图标,需要点击回车搜索。
第一次使用了 driver.sendKeyevent(66); 这个方法。但是报错,错误如下:
> warn: [DEPRECATED] The keyevent function has been deprecated and will be removed. Please use the pressKeyCode function instead.
因此跳过了,无法执行。
我自己对这个错误的理解是,keyevent 这个方法已经被弃用了,需要用 pressKeyCode() 来代替。
但是我下面的 driver.sendKeyEvent(4); //返回键 又可以执行,没有报错;
然后我根据我对报错的理解,使用了 driver.pressKeyCode(66); 但是,代码报错。
请问各位大佬,这到底是是什么情况??
|