목록전체 글 (21)
ITGeine
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/XC94f/btrCHPAfNDm/L8WVHLI9BQnDyhXghdHciK/img.png)
TAU 강의 - Appium 자바 스크립트 강의를 들으면서 메모하려고 한다. Chapter 1.4 : Project Setup 해당 수업에서는 간단한 웹 테스트 프로젝트 생성 - 테스트 돌리는 시나리오까지 진행한다. 참고로 Chatper 1.1 ~ 1.3 으로는 사전에 필요한 환경 세팅 방법을 기술하고 있다. > node.js, jdk, android sdk, android studio 등 1. mkdir 로 workspace 생성 2. npm init -y { "name": "testapp", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && ..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/B5DBu/btrCDCo0aFq/nkxHAgIi6dAm1VQKkIxgh1/img.png)
android sdk 설치경로 확인법 안드로이드 스튜디오 > File > Project Structure > Android SDK location
문제 상황 gc overhead limit exceeded 발생하여 서비스 다운됨 - The GC Overhead Limit Exceeded error is one from the family of java.lang.OutOfMemoryError and is an indication of a resource (memory) exhaustion. 원인 - the error occurs when the JVM spent too much time performing Garbage Collection and was only able to reclaim very little heap space. 가비지 컬렉터 실행과정에서 자바 프로그램이 느려지는 경우 발생한다. 가바지 수집 후, 자바 프로세스가 자바 컬렉션을 수..