본문 바로가기

error12

[TestNG] testng.xml is not a valid file error 해결법 testng.xml을 wokspace에 넣어주면 된다. 2021. 1. 25.
UnicodeDecodeError 에러 python에서 출력된 결과를 파일로 쓰거나 파일을 읽을 때, 한글이 포함되어 있으면 반드시 인코딩 옵션을 추가해줘야 한다. 만약 안하면 노가다 할지도... ex. f = open("ios_keyword_competitors.json","w", encoding="utf8") with open('ios_keyword_competitors.json', 'r', encoding='utf8') as file: ios_keyword = json.loads(file.read()) myfile = open("ios_keyword_competitors.txt", encoding="utf8") 2019. 6. 13.
[Error] Kernel driver not installed (rc=-1908) Kernel driver not installed (rc=-1908) Make sure the kernel module has been loaded successfully. where: suplibOsInit what: 3 VERR_VM_DRIVER_NOT_INSTALLED (-1908) - The support driver is not installed. On linux, open returned ENOENT. VM 실행 시에 다음과 같은 Error가 발생할 수 있다. 그럴 땐 시스템 환경설정 > 보안 및 개인정보 보호에 진입해서 Oracle 앱 허용을 해줘야 한다. https://stackoverflow.com/questions/49613092/installation-of-virtual-box-on-.. 2018. 11. 23.
unable to resolve class com.jayway.jsonpath.JsonPath Error 아래와 같은 Groovy script를 작성할 경우, Command로 돌릴 경우에 Error가 발생한 import groovy.json.JsonSlurper;import com.eviware.soapui.support.types.StringToStringMap;import static com.jayway.jsonpath.JsonPath.parse def responseContent = testRunner.testCase.getTestStepByName("signin").testRequest.response.contentAsString;def access_token = parse(responseContent).read('token.access_token');def token_type = parse(resp.. 2017. 5. 31.