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 eb8a1dc commit 41bc62aCopy full SHA for 41bc62a
botcity/web/bot.py
@@ -250,6 +250,8 @@ def binary_path(self, binary_path: str):
250
Args:
251
binary_path (str): The binary path to be used.
252
"""
253
+ if not os.path.exists(binary_path):
254
+ raise ValueError("There is no file in the binary path.")
255
self._binary_path = pathlib.Path(binary_path)
256
257
def start_browser(self):
0 commit comments