After setting up the environment and trying to run the search_page.py script I ran into several issues. The first I could easily resolve:
line 86 would fail to run. I had to update it to be: driver = selenium.webdriver.Firefox(service=service)
After that it fails at line 108: cid = driver.execute_script("return sys.command_queue;")[0]['cid']
It comes up as index out of range. When I print out the result of driver.execute_script("return sys.command_queue;") it is an empty list.
This was tested on Rocky Linux 8 with the latest version of Firefox.
After setting up the environment and trying to run the search_page.py script I ran into several issues. The first I could easily resolve:
line 86 would fail to run. I had to update it to be: driver = selenium.webdriver.Firefox(service=service)
After that it fails at line 108: cid = driver.execute_script("return sys.command_queue;")[0]['cid']
It comes up as index out of range. When I print out the result of driver.execute_script("return sys.command_queue;") it is an empty list.
This was tested on Rocky Linux 8 with the latest version of Firefox.