Question: Does using Selenium Webdriver have an impact on browser performance?
Background: I've been reading up on browser performance metrics, just using the browser dev tools but also looking into the Navigation Timing API and Resource Timing API. There are also some packages out there that implement these (or seem to implement them, I didn't dig into the source code) - such as browser perf.
Considering these hook into the browser environment via browser.executeScript()
to return objects from window.performance
, would this impact actual performance (and ultimately skew my data when compared to a user checking these metrics manually)?