본문 바로가기
[IT]

Appium JavaScript error occurred in the main process

by DDBobD 2022. 8. 11.
728x90
반응형

Appium Server GUI(1.22.3)나 Inspector(2022.4.1)을 실행하면 다음과 같은 팝업이 발생한다. 해당 오류는 아래 링크를 참고하면 쉽게 해결 가능하다.

 

Crash Appium Server GUI 1.22.3 · Issue #2000 · appium/appium-desktop

When I try to open the new version Appium Server GUI 1.22.3 it crash with "A JavaScript error occurred in the main process" error. All the exception stack trace: Uncaught Exception: Error...

github.com

 

GitHub - appium/appium-inspector: A GUI inspector for mobile apps and more, powered by a (separately installed) Appium server

A GUI inspector for mobile apps and more, powered by a (separately installed) Appium server - GitHub - appium/appium-inspector: A GUI inspector for mobile apps and more, powered by a (separately in...

github.com

 

GitHub - appium/appium-desktop: Appium Server in Desktop GUIs for Mac, Windows, and Linux

Appium Server in Desktop GUIs for Mac, Windows, and Linux - GitHub - appium/appium-desktop: Appium Server in Desktop GUIs for Mac, Windows, and Linux

github.com

 

해결 방법

1. 다운로드 경로에서 아래 명령어 입력

xattr -cr /path/file

# xattr -cr /Users/test/Downloads/Appium-Server-GUI-mac-1.22.3.dmg
# xattr -cr /Users/test/Downloads/Appium-Inspector-mac-2022.4.1.dmg

2. 앱 설치 후 Applications 경로에서 아래 명령어 입력

codesign --deep --sign - /path/app
# codesign --deep --sign - /Applications/Appium\ Server\ GUI.app
# codesign --deep --sign - /Applications/Appium\ Inspector.app

 

 

 

 

 

728x90
반응형

'[IT]' 카테고리의 다른 글

python 패키지 한번에 설치  (0) 2022.08.23
듀얼모니터 시작표시줄 한쪽만 보이게하기  (0) 2022.08.16
VMware 최적화  (0) 2022.08.11
크롬 다운그레이드  (0) 2022.06.30
크롬 업데이트 끄기  (0) 2022.06.30