from selenium import webdriver
driver=webdriver.Chrome('C:\Chrome_Driver\chromedriver.exe')
driver.get('https://hinative.com/en-US/users/sign_in')
driver.find_element_by_name('user[login]').send_keys('')
driver.find_element_by_name('user[password]').send_keys('')
driver.find_element_by_xpath('//*[@id="new_user"]/input[4]').click()
from bs4 import BeautifulSoup
def get_questions():
questions=[]
driver.get('https://hinative.com/en-US/profiles/4045677/questions')
html=driver.page_source
soup=BeautifulSoup(html, 'html.parser')
lists=soup.findAll('div', {"class":"q_title"})
for list in lists:
question=list.text
questions.append(question)
return questions
questions=get_questions()
print(questions)
'IT 개발 프로그래밍 > 파이썬' 카테고리의 다른 글
파이썬 AttributeError: module 'collections' has no attribute 'MutableMapping' 에러 해결 (0) | 2022.06.14 |
---|---|
크롬 버전 자동업데이트로 인한 compatibility 문제 (0) | 2019.08.11 |
Hinative 로그인 하기 (0) | 2019.04.05 |
파파고에 문장 번역시키기 (0) | 2019.04.05 |
자동 로그인 및 주요 정보 추출하기 (0) | 2019.04.02 |