I am using the following code, but unable to find the file "test.html" on my local computer on the specified path. Also, the code does not give an error when I run it. Could someone please help me with locating my file?
pyautogui.hotkey('ctrl', 's')
time.sleep(2)
FILE_NAME = 'C:\\file_path_on_my_computer\\test.html'
pyautogui.typewrite(FILE_NAME)
pyautogui.hotkey('enter')