async def resolve_url( *, url: str, base_url: str, ) -> str
from intuned_browser import resolve_url async def automation(page, params, **_kwargs): # Using explicit base URL absolute_url = await resolve_url( url="/api/users", base_url="https://example.com" ) # Returns: "https://example.com/api/users"
str