반응형
Chrome-php 사용해 크로미니움 크롤러를 만들고 있는데 해당 에러가 간헐적으로 발생했다.
타임아웃시간을 늘려줘도 소용이 없었다.
시간도 5초 10초 2초 뭐 가지각색이다.
보니까 새창을 띄우는 페이지들이 있어 컨트롤이 안되는것을 확인
setPagePreScript 함수를 사용하여 window.open 함수를 조저버렸다.
$script = '(function() {
window.open = function(elements) {
console.log( elements );
};
})();';
$browser->setPagePreScript($script);
오류가 안난다.
반응형
'Infomation' 카테고리의 다른 글
LiveWire3 SweetAlert2 사용하기 (0) | 2023.09.18 |
---|---|
Laravel 10 Auth::attempt field define (0) | 2023.08.30 |
Mac Webp 변환 빠른동작 Script 등록 (0) | 2023.05.22 |
[Chrome Extension] Google, Namuwiki tabs.onUpdated Duplicate (0) | 2023.05.19 |
autoprefixer: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated. (0) | 2023.05.10 |