Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我必须点击菜单导航按钮。我已经尝试过click(),tap()两者都工作正常,但哪个是首选(对于模拟器和物理设备)
click()
tap()
tap() 方法属于 AppiumDriver 类,而 click() 方法属于 WebDriver 类
我认为,最好使用 driver.tap() 方法,因为它更紧密地绑定到移动场景。我们可以在模拟器和真实设备上使用。结果是一样的
我想点击适用于电脑,点击适用于触摸屏/移动设备(手机、平板电脑)