Data Scraping으로 URL추출

게시판의 게시물을 Data Scraping으로 데이터 추출을 했는데 URL이 추출이 안됩니다. href를 추출할 수 있는 방법이 없을까요?
Get Attribute로도 해봤지만 href가 추출이 안됩니다.

@HJ-seo

  1. Href property will be there only if it is A tag
  2. check what element you indicated to know if href would come or not
  3. few sites use javascript instead of A tag and you cannot retreive url for those

cheers

Hi, @HJ-seo

Try that ,

GetAttribute(“href”)

A테그도 없고 자바스크립도 없어서 ㅜㅜ 어디서 찾아야할지 막막합니다.

@HJ-seo

the selector you get will tell if it is havign A tag or not

<webctrl tag='Tag Name' />

href is a property of A tag only

javascript you would not see as it would be on event link on click or so

cheers