import time from selenium import webdriver from selenium.webdriver.common.by import By from bs4 import BeautifulSoup from urllib.request import urlopen from selenium.webdriver.common.keys import Keys# selenium으로 DOM 에 접근하는 방법- 단일 객체 반환(bs4의 find()와 같은 형태) - find_element- 리스트 객체 반환(bs4의 find_all()과 같은 형태) - find_elements# 웹 접속하기url = "https://www.naver.com"driver = webdriver.Chrome() #셀레니움이..