status-desktop/test/e2e/scripts/utils/browser.py

14 lines
169 B
Python

import webbrowser
import requests
def open_link(url):
webbrowser.open(url)
def get_response(url):
response = requests.get(
url)
return response