Вот так попробуй
<html>
<head>
</head>
<body>
<div id="one">
<div id="inner"></div>
</div>
<p id="two"></p>
<script>
Object.defineProperty(HTMLElement.prototype, "gA", {value: HTMLElement.prototype.getAttribute, enumerable: false})
arr=[
document.querySelector("div").gA("id"),
document.querySelector("div").querySelector("div").gA("id"),
document.querySelector("p").gA("id")
]
alert(arr)
</script>
</body>
</html>