我有日记页面的行(时间)和列(人物)。我想从上到下拖动并选择三行。请帮帮我。
答案 0 :(得分:3)
使用actions
在Protractor中执行拖放操作,其中还包括偏移量x&年。类似的东西:
browser.actions().
mouseDown(timeElement, {x: right, y: bottom}).
mouseMove(personElement, {x: right, y: bottom}).
mouseUp().
perform();