Home > Software engineering >  Does selenium webdriver collect data?
Does selenium webdriver collect data?

Time:08-29

I know the Webdriver we use for selenium is just a normal Webdriver, like that one we use in our everyday life. But might it be, that selenium Webdriver collect our data (when we e.g. use access token)?

CodePudding user response:

AFAIK Webdriver does not collect any our data.
You can validate this assumption as following:
Perform all the possible actions with Selenium on some PC where you can see all the internet traffic to and from that machine, then check all that traffic.

  • Related