일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
- ftp
- 28015
- STF_PortForwarding
- nGrinder
- Jupyter Notebook
- appium
- openpyxl
- kitura
- STF
- Materials
- rethinkdb
- centos
- nohup
- GoCD
- ubuntu
- postgresql
- create table
- PYTHON
- 실행권한
- sshpass
- port forwarding
- perfect
- nmap
- appium server
- mysql
- SWIFT
- ssh
- Jupyter
- insert
- postgres
- Today
- Total
목록Testing Automation/Selenium (17)
don't stop believing
윈도우에 Selenium (Python)을 설치하고 사용해 봅시다.Python 버전을 먼저 확인해 보겠습니다. C:\Users\jake>python --version Python 3.6.4 Selenium 설치는 pip으로 합니다. C:\Users\jake>pip install -U selenium Requirement already satisfied: selenium in c:\users\jake\appdata\local\programs\python\python36-32\lib\site-packages selenium이 이미 설치되어 있다고 합니다.참고로 selenium의 버전이 알고 싶다면 아래처럼 import 후 __version__을 print()함수로 확인할 수 있습니다. C:\Users\jak..
Selenium With Python[http://selenium-python.readthedocs.io] 1. Installationhttp://selenium-python.readthedocs.io/installation.htmlSelenium 설치와 기본 설명입니다. 2. Getting Startedhttp://selenium-python.readthedocs.io/getting-started.htmlPython을 이용한 Selenium 기본 사용 설명과 Python Code 구조에 대해 설명합니다. 3. Navigatinghttp://selenium-python.readthedocs.io/navigating.html웹 페이지의 이동과 input에 대한 typing, drag and drop 등을 ..
Selenium을 사용해 테스트를 할때 element를 찾을 수 있도록 Web Page가 로딩이 끝날때 까지 기다려야 합니다.AJAX를 이용해 만든 Web의 경우 리소스가 로드하는데 부문별로 다를 수 있습니다. Selenium에서는 두 가지 타입의 wait method를 제공합니다. Explicit Waits특정 상태가 될때까지 기다리고, 상태가 되면 바로 실행한다. from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions a..
앞서 selenium에서 element를 찾는 것을 확인했습니다.Selenium Locating Elements (python) 각 element에 따라 method를 따로 사용하는 것 보다 깔끔하게 정리하기 위해 By를 사용해 봅시다.driver.find_element(By., '')으로 사용합니다. 여러 element를 찾을 경우 find_elements로 할 수 있습니다. 사용은 아래와 같이 합니다. from selenium.webdriver.common.by import By driver.find_element(By.XPATH, '//button[text()="Some text"]') driver.find_element(By.XPATH, '//button') driver.find_element(B..
Selenium을 사용하기 위해서는 Web source의 element를 찾아야 합니다.[http://selenium-python.readthedocs.io/locating-elements.html] Selenium에서는 web page의 elements를 찾기위해 아래와 같은 method들을 제공합니다.아래 method들은 HTML의 page source중 가장 첫번째 element를 반환합니다.find_element_by_idfind_element_by_namefind_element_by_xpathfind_element_by_link_textfind_element_by_partial_link_textfind_element_by_tag_namefind_element_by_class_namefind_el..
Selenium IDE를 사용해서 record를 하려고 했는데 안타까운 뉴스가 있었네요.[https://seleniumhq.wordpress.com/2017/08/09/firefox-55-and-selenium-ide/]Firefox 55에서 이젠 selenium IDE가 동작하지 않으며 이제 지원되지 않을 거라는 겁니다. geckodriver를 좀 알아봐야 겠네요.
Selenium은 어려 개발 언어를 지원합니다. python 버전을 설치하고 기본 예제를 실행해 봅시다. Python이 설치되어 있다면 pip으로 간단히 설치할 수 있습니다. $ pip install selenium Collecting selenium Downloading selenium-3.7.0-py2.py3-none-any.whl (935kB) 100% |████████████████████████████████| 942kB 1.6MB/s Installing collected packages: selenium Successfully installed selenium-3.7.0 Mac에서 selenium을 실행한다면 geckodriver를 설치하고 설치된 위치를 확인합니다. $ brew install..