0
在我的測試環境中,我使用來自http://webdriver.io/的非官方webdriverjs來測試我的前端。儘管我在源代碼https://github.com/camme/webdriverjs中查看了一下,但我無法正確定義鼠標移動。WebdriverJs中的鼠標移動未通過JQuery註冊
使用
client.moveTo(undefined, 200, 200, function() {
client.buttonDown (function() {
//print location of click
});
});
讓我在X點擊:200; y:200.我的問題是沒有註冊鼠標移動(使用$('...').on('mousemove', func {});
)
是否有任何方式發送鼠標移動以便將它們識別爲mousemove事件?
問候
硒不觸發mousemove事件,同時通過'moveto'設置鼠標光標,雖然它可能在未來實現。我們會看到。 – ChristianB