Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- centos
- 28015
- Materials
- nohup
- nGrinder
- nmap
- GoCD
- sshpass
- mysql
- kitura
- Jupyter
- ftp
- ssh
- SWIFT
- insert
- postgres
- postgresql
- rethinkdb
- PYTHON
- ubuntu
- port forwarding
- openpyxl
- create table
- 실행권한
- STF
- STF_PortForwarding
- perfect
- appium server
- Jupyter Notebook
- appium
Archives
- Today
- Total
don't stop believing
find_element By로 정리하기 본문
앞서 selenium에서 element를 찾는 것을 확인했습니다.
Selenium Locating Elements (python)
각 element에 따라 method를 따로 사용하는 것 보다 깔끔하게 정리하기 위해 By를 사용해 봅시다.
driver.find_element(By.<속성>, '<속성 값>')으로 사용합니다. 여러 element를 찾을 경우 find_elements로 할 수 있습니다.
사용은 아래와 같이 합니다.
1234567891011121314from selenium.webdriver.common.by import Bydriver.find_element(By.XPATH, '//button[text()="Some text"]')driver.find_element(By.XPATH, '//button')driver.find_element(By.ID, 'loginForm')driver.find_element(By.LINK_TEXT, 'Continue')driver.find_element(By.PARTIAL_LINK_TEXT, 'Conti')driver.find_element(By.NAME, 'username')driver.find_element(By.TAG_NAME, 'h1')driver.find_element(By.CLASS_NAME, 'content')driver.find_element(By.CSS_SELECTOR, 'p.content')driver.find_elements(By.ID, 'loginForm')driver.find_elements(By.CLASS_NAME, 'content')
By 속성은 아래와 같습니다.
- ID = "id"
- XPATH = "xpath"
- LINK_TEXT = "link text"
- PARTIAL_LINK_TEXT = "partial link text"
- NAME = "name"
- TAG_NAME = "tag name"
- CLASS_NAME = "class name"
- CSS_SELECTOR = "css selector"
'Testing Automation > Selenium' 카테고리의 다른 글
Selenium With Python Document (0) | 2017.11.07 |
---|---|
로딩이 끝날때까지 기다리자 (Waits) (4) | 2017.11.07 |
Selenium Locating Elements (python) (0) | 2017.11.07 |
Selenium IDG for Firefox Nightly (Windows) (0) | 2017.11.06 |
Selenium (Python) 설치와 기본 사용해 보기 (Mac) (0) | 2017.11.06 |