wopehq/muninn

If there is an element that does not have the desired attribute to be accessed, that field is returned completely empty.

aykutkardas opened this issue · 1 comments

Input

<div class="test">Content</test>

Selector

{
    detail: ".test",
    link: ".test @ href"
}

Output

{
    detail: "Content"
}

Expected

{
    detail: "Content",
    link: null
}