beautifulsoup selenium 텍스트 추출 x.get_text() x.text 이미지 추출 x.get('src') 또는 x['src'] x.get_attribute('src') 링크 추출 x.get('href') 또는 x['href'] x.get_attribute('href') 기타 속성 추출 x.get_attribute('style') ex) beautifulsoup 이용하여 이미지 추출 rh_images = soup.select('img.rh-image-embed-img') for img in rh_images: img_link = img['src']# 방법1 img_link = img.get('src')# 방법2