Playwright 스크립트에서 애니메이션이 완료될 때까지 기다리는 방법
6600 단어 playwrightjavascripte2etesting
평소와 같이 충분히 단어, 아래 코드를 적용해보십시오 😄
async function waitNoMutations(page, selector) {
return await page.evaluateHandle(function (selector) {
var list = document.querySelectorAll(selector);
var elements = [].slice.call(list);
var config = { attributes: true, childList: true, subtree: true };
var mutations = 5; // wait at least five intervals
var observer = new MutationObserver(function () {
mutations += 1;
});
elements.forEach(function (target) {
observer.observe(target, config);
});
var decrementInterval = setInterval(function () {
mutations -= 1;
if (mutations <= 0) {
clearInterval(decrementInterval);
}
}, 5); // this quant might be reduced?
function complete() {
return mutations <= 0;
}
return new Promise(function (resolve) {
var count = 0;
var completeInterval = setInterval(function () {
if (count >= 1000) { // timeout?
clearInterval(completeInterval);
observer.disconnect();
resolve("timeout");
return;
}
if (complete()) {
clearInterval(completeInterval);
observer.disconnect();
resolve(true);
return;
}
count += 1;
}, 5);
});
}, selector);
}
이것은 작동하지만 100% 경우는 아닙니다 😄
즐기다! 😄
링크original post .
Reference
이 문제에 관하여(Playwright 스크립트에서 애니메이션이 완료될 때까지 기다리는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/sergeyt/how-to-wait-animations-complete-in-playwright-script-50fb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)