일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 해외증권 양도세 한국투자증권
- CSTS 폭포수 모델
- 재귀함수 예제
- 홈택스 해외주식 양도세
- katalon 비교
- bfs 미로탐색 java
- 한국투자증권 해외주식 양도세
- recursion example
- 피보나치함수
- Katalon Recorder 사용법
- 해외주식 양도세 신고
- katalon 사용법
- katalon
- 최대공약수 예제
- 재귀 예제
- java.sql.SQLSyntaxErrorException
- javascript 자동완성
- 주식 양도세 신고방법
- git 연동
- oracle group by
- 테스트 자동화
- 피보나치함수 예제
- katalon xpath
- 국세청 해외주식 양도세 신고방식
- 톰캣 실시간 로그
- katalon 자동화
- tomcat log
- 피보나치 예제
- js 자동완성
- 한국투자증권 양도세 신고
- Today
- Total
목록전체 글 (390)
엄지월드
Katalon에서 자주 사용되는 Click 이벤트이다. import static com.kms.katalon.core.checkpoint.CheckpointFactory.findCheckpoint import static com.kms.katalon.core.testcase.TestCaseFactory.findTestCase import static com.kms.katalon.core.testdata.TestDataFactory.findTestData import static com.kms.katalon.core.testobject.ObjectRepository.findTestObject import com.kms.katalon.core.checkpoint.Checkpoint as Checkpoint ..
docker ps -a 현재 실행되어 있는 도커 컨테이너 확인 docker rm -f `docker ps -a -q` 현재 실행되어 있는 도커 컨테이너 모두 삭제 docker rm -f 1aa244fdd563(container id) docker rmi -f `docker images` 현재 있는 도커 이미지 모두 삭제 docker images 도커 이미지들 확인 docker run -d -p 9876:3306 -e MYSQL_ROOT_PASSWORD=password mysql:5.6 MYSQL 설치 docker run -p 80:80 -v /home/ubuntu/example/html:/var/www/html example 내부 80번 포트를 Container의 80번 포트와 연동을 하고, /home/..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/lQizO/btqClx1zToI/wxrsgObS6pVDBvpNIxezLK/img.png)
Docker Quickstart Terminal 설치 후, 실행을 했을 때 아래와 같이 문제가 발생하였다ㅜㅜ Running pre-create checks... Error with pre-create check: "This computer is running Hyper-V. VirtualBox won't boot a 64bits VM when Hyper-V is activated. Either use Hyper-V as a driver, or disable the Hyper-V hypervisor. (To skip this check, use --virtualbox-no-vtx-check)" Looks like something went wrong in step ´Checking if machine de..
1. morrisjs http://morrisjs.github.io/morris.js/ 2. chartjs http://www.chartjs.org/ 3. nvd3 http://nvd3.org/ 4. c3js http://c3js.org/ 5. google chart https://developers.google.com/chart/ 6. high chart http://www.highcharts.com/ 7. amcharts https://www.amcharts.com 8. d3 https://github.com/d3/d3/wiki/Gallery
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cQOHIs/btqEoAoBwdK/nDHx6hendBNq1VMyp9K5l1/img.png)
- 숫자가 포함된 버튼 구하기 >, 1] - 부모 노드 선택하기 => parent:: 'parent를 2번씩 활용할 수도 있다' //*[text() = '채용']/parent::tr[1]/parent::tbody[1]/parent::table[1]/following-sibling::table/tbody/tr[1]/td[3]//input[@type="number"] //*[text() = '채용']/parent::tr[1]/parent::tbody[1]/parent::table[1]/following-sibling::table/tbody/tr[1]//*[@data-kind="unitPrice"] - 동료 노드 선택하기 => following-sibling:: 'input 옆에 있는 span 선택하기' //..
git cherry-pick이란 다른 브랜치에 있는 커밋을 선택적으로 내 브랜치에 적용시킬 때 사용하는 명령어이다. 명령어는 다음과 같다. git cheery-pick => Ex) git cherry-pick cb99c0b cfa1c0b, git cherry-pick cb99c0b
An internal error occurred during: "Flushing content description cache...An internal error occurred during: "Flushing content description cache.". Tree element '/D%%workspace%inconfig-automation%inCONFIG.prj/bin/lib/TempTestSuite1579743884916.class' not found. 혹은 cannot open the test case... 에러 나는 경우 Katalon을 지웠다가 다시 압축을 풀어서 실행시키면 잘 된다!!! (누군가 고생하는 이를 위해 작성)
node를 통하여 다른 파일의 코드를 참조하는 방식에 대해서 설명해드리겠습니다. 간단히 코드를 작성해보면 아래와 같습니다. // auth.js var auth = function(user){ var result = ''; if(user == 'ejy1024'){ result = 'gd'; }else{ result = 'top'; } return result; } module.exports = auth; // auth를 모듈로 빼준다. // route.js var userAuthPath = require('./auth.js'); // 같은 폴더 내에 auth 파일이 있어야 한다. console.log(userAuthPath('ejy1024')); // 제대로 출력되는지 확인 실제 사용과 비슷하게 조금 더 ..
날짜 기간 구하기 SELECT * FROM log WHERE question_datetime between date('2019-11-21') and date('2019-11-27')+1 포함된 문자 구하기 SELECT* FROM log WHERE content LIKE "%내용%";
javascript로 xpath의 값을 구하는 방법은 아래와 같다. 필자는 Katalon을 활용해 xpath를 구했을 때 제대로 구해졌는지 확인하려고 검색했는데, 크롤링을 구현할 때도 활용 가능할 것 같다. document.evaluate(path, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; 예시 : document.evaluate('//*[@id="tbodyCustomList"]/tr[1]/td[10]/div/span/text()[2]', document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;