Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

Angular 앱 및 HTML용 DragEvent를 프로그래밍 방식으로 어떻게 생성합니까?

<시간/>

DragEvent를 생성하려면 각도기 API를 사용하십시오. 공식 문서에는 다음과 같이 명시되어 있습니다.

The browser.get method loads a page. Protractor expects Angular to be present on a page,
so it will throw an error if the page it is attempting to load does not contain the
Angular library. (If you need to interact with a non-Angular page, you may access the
wrapped web driver instance directly with browser.driver).

다음 패턴도 사용하세요.

browser
.actions()
.dragAndDrop(myEle, {x:100,y:100})
.perform();