H

Results 1 comments of H

Solution 1. Find the file `/virtual/lib/python3.11/site-packages/lib_resume_builder_AIHawk/utils.py` in your virtual environment. directory. 2. Modify the `create_driver_selenium` function as below. ```python def create_driver_selenium(): options = get_chrome_browser_options() service = ChromeService(executable_path=ChromeDriverManager().install()) return webdriver.Chrome(service=service, options=options)...