💾 Archived View for gem.sdf.org › s.kaplan › projects › pyxa › example1.py captured on 2024-03-21 at 15:40:32.

View Raw

More Information

⬅️ Previous capture (2023-09-08)

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

# 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()