python3 - FC online 개인 프로젝트👉 프로젝트 Github 바로가기# BeautifulSoup으로 스크래핑 시도했으나 실패res = requests.get(https://fifaonline4.inven.co.kr/dataninfo/player/?code=280200104)soup = BeautifulSoup(res.text, 'html.parser')soup.find_all('span.comment')# Selenium으로 성공(일단 테스트로 하나의 리뷰만 스크래핑comment = wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR,'span.comment')))print(comment.text)[ 논리 과정 ]FC online 인벤에서 특정..