While testing a website on Chrome using selenium webdriver
(chromedriver
) with ruby
and selenium grid 2
, I manually clicked on Allow
to track my location.
Since then every new run starts off with the Chrome browser tracking my location and not asking for permission anymore.
In my understanding that should not happen, as Selenium should create a new profile and not remember any user interactions in the previous run.
I have also tried to open the Chrome Browser as an admin (manually) and change the settings to forget any permissions set for location services for the site being tested. But that has not helped either.
I have also tried to restart the grid but that has not helped either.
Does anyone know how do I make the browser forget my permission?
UPDATE
Code to start the driver
@driver = Selenium::WebDriver.for(:remote, :url => @sel_grid_url, :desired_capabilities => @browser)
Try this..
Also verify that you have
Ask me when a site tries to track my physical location (recommended)
option checked, underSettings -> Advanced Settings -> Privacy -> Content Settings -> Location
.Update:
Another try..
Try this for a local WebDriver fix:
To do so remotely, I think it would probably look something like this:
Please see the RubyBindings documentation for information on using switches https://code.google.com/p/selenium/wiki/RubyBindings#Chrome
You can view a list of Chrome switches here: http://peter.sh/experiments/chromium-command-line-switches/
Update
Looks like Chromedriver needs to turn testing defaults off first before some settings (like geolocation tracking) can be set (this according to a revision of the ChromeDriver Capabilities wiki found here: http://wiki.chromedriver.googlecode.com/git-history/c790ec6b0b32a31a8797a0fa97b7f4dccb4f5da4/CapabilitiesAndSwitches.wiki ).
I updated the code above to include the config to set to turn the testing defaults off (see http://code.google.com/p/chromium/issues/detail?id=113884 and http://code.google.com/p/selenium/issues/detail?id=4622 ).
Please ensure that you are using selenium-webdriver 2.26.0 or greater.