💾 Archived View for gem.sdf.org › s.kaplan › projects › pyxa › example1.py captured on 2023-09-08 at 16:43:36.

View Raw

More Information

-=-=-=-=-=-=-

# Opens a URL in Safari and prints the loaded page.
import PyXA
from time import sleep
safari = PyXA.Safari()
safari.open("https://www.apple.com")
sleep(1)
safari.current_document.print()