I'm trying to verify if a site changes as the position of who accesses the site changes. So i thought to access the site using different IP addresses but i don't know to do it practically. All i was able to learn is that using packages httr and rvest i can simulate a session using a different IP than mine, trough command:
html_session("https://whatismyipaddress.com/",use_proxy("185.82.212.95", 8080))
I'm not sure that is really usefull for my purpose, as i don't know how to use it. The proxy and the port were taken from https://free-proxy-list.net/
The following step would be to take a screen-shot of the web pages, as i know that often scraping isn't permitted and i'm satisfied of a "qualitative" analysis. I know I can take screenshots using webshot package:
webshot(url="https://whatismyipaddress.com/",file="C:/Users/.../screen.png", zoom=4 )
So how can i do to make webshot has screenshots of webpages opened using "fake" IP?
Thank you!