ChromeDevTools / devtools-protocol

Chrome DevTools Protocol
https://chromedevtools.github.io/devtools-protocol/
BSD 3-Clause "New" or "Revised" License
1.15k stars 226 forks source link

DOM.attributeModified #208

Closed sapshah closed 4 years ago

sapshah commented 4 years ago

While using puppeteer, I have the following snippet

await client.send('DOM.enable');
client.on('DOM.childNodeRemoved', () => {
            console.log('hello dom node removed');
        });

I goto the inspect element and try to remove a node. However that will not throw any event. I am unable to get any event around attribute modified, inserted nodes or removed nodes from DOM domain.

I am trying to do so using inspect element. Is there something else that I need to do?

TimvdLippe commented 4 years ago

This repository is related to Chrome DevTools Protocol, but does not track issues regarding its definition or implementation. If you want to file an issue for the Chrome DevTools Protocol, please open an issue on https://crbug.com under component: Platform>DevTools>Platform. Thanks in advance!