Skip to content

Commit

Permalink
LukeIS on behalf of Yuping Chen: Fix python client, avoid duplicate c…
Browse files Browse the repository at this point in the history
…hrome option items after reusing options class. Fixes Issue 4744.

r18139
  • Loading branch information
lukeis committed Nov 14, 2012
1 parent bc29109 commit ba9eb76
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions py/selenium/webdriver/chrome/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@

class Options(object):

_binary_location = ''
_arguments = []
_extension_files = []
_experimental_options = {}
def __init__(self):
self._binary_location = ''
self._arguments = []
self._extension_files = []
self._experimental_options = {}

@property
def binary_location(self):
Expand Down

0 comments on commit ba9eb76

Please sign in to comment.