Skip to content Skip to sidebar Skip to footer

Selenium To Get My Current Position "location"

I am scraping for the following page https://mycurrentlocation.net/ by using selenium in order to retrieve my current position (region name & place name), when I execute this c

Solution 1:

I think u don't want the browser to be seen (if that's the case) you are looking for

headless mode with selenium .

add this this argument to options :

options.add_argument("--headless")

Post a Comment for "Selenium To Get My Current Position "location""