Study_Note

Selenium WebDriver 본문

selenium (with python)

Selenium WebDriver

12월7일생 2023. 4. 27. 17:53
728x90
반응형

Selenium WebDriver 란?

Selenium WebDriver는 Selenium 프로젝트의 일환으로 개발된 무료 오픈소스 웹 브라우저 자동화 도구입니다.

Selenium WebDriver는 다양한 브라우저를 제어할 수 있으며, 자동화 테스트를 위한 API를 제공합니다.

이를 통해 웹 응용 프로그램의 동작을 테스트하고, 버그를 찾아내고 수정하는 등의 작업을 수행할 수 있습니다.

Selenium WebDriver는 다양한 프로그래밍 언어를 지원합니다.

Java, Python, C#, Ruby, JavaScript 등 다양한 언어를 사용하여 자동화 테스트를 구현할 수 있습니다.

Selenium WebDriver는 브라우저의 요소에 대한 검사 및 조작 기능을 제공합니다.

이를 통해 웹 페이지의 요소를 식별하고, 이를 클릭하거나 값을 입력하거나, 스크롤하는 등의 동작을 수행할 수 있습니다.

Selenium WebDriver는 Selenium IDE와 함께 사용할 수 있습니다.

Selenium IDE에서 생성한 테스트 케이스를 Selenium WebDriver에서 실행하면,

다양한 브라우저에서 동일한 동작을 수행할 수 있습니다.

또한, Selenium WebDriver는 웹 애플리케이션의 자동화된 테스트 수행 시나리오를 구현할 때 필요한 다양한 기능을 제공합니다.



Selenium 공식 페이지 및 자료 출처

 

Selenium

Selenium automates browsers. That's it!

www.selenium.dev

 

WebDriver

WebDriver drives a browser natively, learn more about it.

www.selenium.dev

 

 


 

사용 방법 및 절차 안내

 

PyCharm: JetBrains가 만든 전문 개발자용 Python IDE

 

www.jetbrains.com

 

ChromeDriver - WebDriver for Chrome - Downloads

Current Releases If you are using Chrome version 115 or newer, please consult the Chrome for Testing availability dashboard. This page provides convenient JSON endpoints for specific ChromeDriver version downloading. For older version of Chrome, please see

chromedriver.chromium.org

pip install selenium conda install selenium
 

Python, Machine & Deep Learning

Python, Machine Learning & Deep Learning

greeksharifa.github.io

 

파이썬 python import명령어로 사용하는 주로 쓰는 외장 함수 정리

외장 함수 외장 함수는 내장함수처럼 바로 사용할 수 있는 함수가 아닌 해당 모듈을 import를 통해서 사용...

blog.naver.com

 

 

 

'selenium (with python)' 카테고리의 다른 글

selenium : python 시간대기 명령어  (0) 2023.04.28
selenium python : page scroll  (0) 2023.04.28
selenium python : Import, from, as  (0) 2023.04.28
Chrome Driver  (0) 2023.04.27
Selenium IDE  (0) 2023.04.27