Skip to content

Commit

Permalink
fix py file
Browse files Browse the repository at this point in the history
  • Loading branch information
burak-58 committed Nov 19, 2023
1 parent 71372bd commit 15f0553
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions multitrack-conference-server.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def init(self, is_headless):
dc = DesiredCapabilities.CHROME.copy()
dc['goog:loggingPrefs'] = { 'browser':'ALL' }

#service = Service(executable_path='/home/ubuntu/chromedriver')
service = Service(executable_path='C:/WebDriver/chromedriver.exe')
service = Service(executable_path='/home/ubuntu/chromedriver')
#service = Service(executable_path='C:/WebDriver/chromedriver.exe')

self.driver = webdriver.Chrome(service=service, options=browser_options)

Expand Down Expand Up @@ -77,7 +77,7 @@ def close_all(self):
#url="www.google.com"
app = Flask(__name__)
chrome = Browser()
chrome.init(False)
chrome.init(True)


@app.route('/create', methods=['GET'])
Expand Down

0 comments on commit 15f0553

Please sign in to comment.