feat: join base url with href
This commit is contained in:
@@ -235,7 +235,8 @@ function scrapableHeuristics(maxCountPerPage = 50, minArea = 20000, scrolls = 3,
|
|||||||
|
|
||||||
switch (attribute) {
|
switch (attribute) {
|
||||||
case 'href':
|
case 'href':
|
||||||
return elem.getAttribute('href');
|
const relativeHref = elem.getAttribute('href'); // Get the href attribute
|
||||||
|
return relativeHref ? new URL(relativeHref, window.location.origin).href : null; // Convert to full URL
|
||||||
case 'src':
|
case 'src':
|
||||||
return elem.getAttribute('src');
|
return elem.getAttribute('src');
|
||||||
case 'innerText':
|
case 'innerText':
|
||||||
|
|||||||
Reference in New Issue
Block a user