# Selenium 을 이용한 Web 어플리케이션 테스트 자동화

# Selenium 을 이용한 Web 어플리케이션 테스트 자동화

by jihoon kim

HTML

<h1>Selenium 을 이용한 Web 어플리케이션 테스트 자동화</h1>
<script>
function autolink(id) {
  var container = document.getElementById(id);
  var doc = container.innerHTML;
  var regURL = new RegExp("(http|https|ftp|telnet|news|irc)://([-/.a-zA-Z0-9_~#%$?&=:200-377()]+)","gi");
  var regEmail = new RegExp("([xA1-xFEa-z0-9_-]+@[xA1-xFEa-z0-9-]+\.[a-z0-9-]+)","gi");
  return doc.replace(regURL,"<a href='$1://$2' target='_blank'>$1://$2</a>").replace(regEmail,"<a href='mailto:$1'>$1</a>");
}

window.onload = function () {
  var container = document.getElementById("contents");
	container.innerHTML = autolink("contents");
}
</script>

<pre id="contents">
http://tech.whatap.io/2015/10/02/automation-with-selenium/

https://beomi.github.io/2017/02/27/HowToMakeWebCrawler-With-Selenium/

seleniumhq.org : https://www.seleniumhq.org/download/

# selenium
    : http://tech.whatap.io/2015/10/02/automation-with-selenium/

# JUnit4 vs TestNG : Junit말고 TestNG << 좋음.
    : http://coronasdk.tistory.com/747
    
# hp 상용솔루션 :> Mercury HP > QTP >> 로드러너


#see also : phantomjs 헤드리스브라우져, 화면캡쳐 : http://phantomjs.org/

</pre>