[Python] IntelliJ Python 설치 및 실행
·
추가 공부/Python
이번에 간단하게 IntelliJ에서 Python 을 설치하고 크롤링 예제를 실행시켜보려한다. 1. Python 설치https://www.python.org/downloads/ Download PythonThe official home of the Python Programming Languagewww.python.org사이트에 접속하여 최신버전 Python을 다운 받습니다.다운받고 아래 실행파일을 실행해줍니다. 실행이 완료된다면 다음같은 이미지로 실행이 될겁니다. close가 나올때까지 설치를 진행하면 Python 설치는 완료됩니다.2. IntelliJ 플러그인 설치 IntelliJ 플러그인 -> 마켓플레이스 -> Python 검색Python 플러그인을 설치하고 IntelliJ를 재실행합니다.3. Pyt..
JSP Selenium 사용해보기 3 Naver 지도 크롤링
·
추가 공부/Web
package craw;import java.time.Duration;import java.util.ArrayList;import java.util.Set;import org.openqa.selenium.By;import org.openqa.selenium.Keys;import org.openqa.selenium.WebDriver;import org.openqa.selenium.WebElement;import org.openqa.selenium.chrome.ChromeDriver;import org.openqa.selenium.chrome.ChromeOptions;import org.openqa.selenium.support.ui.ExpectedConditions;import org.openqa.sele..
JSP Selenium 사용해보기 2
·
추가 공부/Web
이번에는 href 태그의 주소를 찾아 해당 링크로 들어가는 것이 아닌태그를 찾아 해당 태그를 클릭해서 페이지를 이동하는 방식으로 진행해보았다. 위 사이트에서 게시판 글 하나 클릭하고 아래 사진에서 글 제목과 내용을가져오는 코드를 작성했습니다. import java.time.Duration;import java.util.ArrayList;import java.util.List;import org.openqa.selenium.By;import org.openqa.selenium.WebDriver;import org.openqa.selenium.WebElement;import org.openqa.selenium.chrome.ChromeDriver;import org.openqa.selenium.support...
JSP Selenium 사용해보기 1
·
추가 공부/Web
이전에 Selenium 설정을 진행해보았다. 설정을 완료하였으니 직접 사용해보자.import java.time.Duration;import java.util.ArrayList;import java.util.List;import org.openqa.selenium.By;import org.openqa.selenium.WebDriver;import org.openqa.selenium.WebElement;import org.openqa.selenium.chrome.ChromeDriver;import org.openqa.selenium.support.ui.ExpectedConditions;import org.openqa.selenium.support.ui.WebDriverWait;public class Craw..
JSP Selenium 설정 및 연습 사이트 찾기
·
추가 공부/Web
Selenium설정 방법1. Selenium 공식 사이트 jar 다운로드https://www.selenium.dev/downloads/ DownloadsDownloads Below is where you can find the latest releases of all the Selenium components. You can also find a list of previous releases, source code, and additional information for Maven users.www.selenium.dev 사이트에 접속하여 아래 zip 파일을 다운받아줍니다. 2. Java Web Project에 추가하기zip파일에 selenium-java-4.24.0.jar를 WEB-INF -> lib ..
개발자가 되고 싶은 곰
'웹 크롤링' 태그의 글 목록