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
- 유니티
- javascript
- GIT
- urllib
- node.js
- PER
- sqlite
- MS-SQL
- Unity
- 다이어트
- MySQL
- IOS
- 라즈베리파이
- Excel
- port
- ASP
- 맛집
- python
- swift
- PyQt5
- tensorflow
- 함수
- 날짜
- 리눅스
- mssql
- pandas
- Linux
- PyQt
- flutter
- ubuntu
Archives
목록Selenium (1)
아미(아름다운미소)
Selenium 을 이용한 Web 테스트 자동화하기Selenium 설치 ChromeDriver - WebDriver for Chrome : 다운로드 https://sites.google.com/a/chromium.org/chromedriver/downloads 예제) # -*- coding: utf-8 -*- ''' Created on 2018. 8. 30. @author: bhm ''' from selenium import webdriver #selenium의 webdriver로 크롬 브라우저를 실행한다 driver = webdriver.Chrome('D:\\chromedriver\\chromedriver.exe') #"Google"에 접속한다 driver.get("http://www.google.co..
랭귀지/python
2018. 8. 31. 10:30