We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 768e26f commit 2d76a81Copy full SHA for 2d76a81
botcity/web/bot.py
@@ -260,11 +260,11 @@ def check_driver():
260
self.capabilities = cap
261
driver_path = self.driver_path or check_driver()
262
self.driver_path = driver_path
263
- self._driver = self._instance_driver(driver_class=driver_class, func_def_options=func_def_options)
+ self._driver = self._instantiate_driver(driver_class=driver_class, func_def_options=func_def_options)
264
self._others_configurations()
265
self.set_screen_resolution()
266
267
- def _instance_driver(self, driver_class, func_def_options):
+ def _instantiate_driver(self, driver_class, func_def_options):
268
try:
269
driver = driver_class(**self._get_parameters_to_driver())
270
except WebDriverException as error:
0 commit comments