[Solved] record a web page using python [closed]

For opening a specific URL, you could use the module “webbrowser”: import webbrowser webbrowser.open(‘http://example.com’) # Go to example.com For recording the page you could install the modules “opencv-python”, “numpy” and “pyautogui”: pip3 install opencv-python numpy pyautogui And then use them all to get the final code, which could look something like this: import cv2 import … Read more