mirror of
https://github.com/browser-use/browser-use
synced 2026-04-22 17:45:09 +02:00
13 lines
186 B
Python
13 lines
186 B
Python
from browser_use.dom.views import ProcessedDomContent
|
|
|
|
|
|
# Exceptions
|
|
class BrowserException(Exception):
|
|
pass
|
|
|
|
|
|
# Pydantic
|
|
class BrowserState(ProcessedDomContent):
|
|
url: str
|
|
title: str
|