0

Simply put, how can I with QPython3 in my phone (Nokia w Android One), open a browser (any browser), go to a URL, and do a SAVE-AS on the page to store it in the /Downloads folder, as a single HTML file?

So far I have this code:

import pyautogui
import webbrowser

webbrowser.open('google.com')
pyautogui.sleep(15)
pyautogui.hotkey('CTRL','s')
pyautogui.sleep(15)
pyautogui.hotkey('Alt','F4')

Those key presses are for Windows. I know! What's the equivalent inside an Android phone?

Fandango68
  • 4,461
  • 4
  • 39
  • 74

1 Answers1

0

The answer is no. I had to use Tasker

Fandango68
  • 4,461
  • 4
  • 39
  • 74