Skip to content

Commit

Permalink
name desired caps explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
seemk committed Nov 13, 2023
1 parent c4bd3d4 commit de3f533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SplunkRumWorkspace/SauceLabsTestApp/sl_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def setUp(self):
caps['sauce:options']['accessKey'] = os.environ['SAUCELABS_KEY']
caps['sauce:options']['username'] = os.environ['SAUCELABS_USER']
url = f'https://ondemand.us-west-1.saucelabs.com:443/wd/hub'
self.driver=webdriver.Remote(url, caps)
self.driver=webdriver.Remote(url, desired_capabilities=caps)

def tearDown(self):
self.driver.quit()
Expand Down

0 comments on commit de3f533

Please sign in to comment.