selenium.webdriver.remote.file_detector

Classes

FileDetector()

Used for identifying whether a sequence of chars represents the path to a file.

LocalFileDetector()

Detects files on the local disk.

UselessFileDetector()

A file detector that never finds anything.

class selenium.webdriver.remote.file_detector.FileDetector[source]

Used for identifying whether a sequence of chars represents the path to a file.

abstract is_local_file(*keys: str | int | float) str | None[source]
class selenium.webdriver.remote.file_detector.UselessFileDetector[source]

A file detector that never finds anything.

is_local_file(*keys: str | int | float) str | None[source]
class selenium.webdriver.remote.file_detector.LocalFileDetector[source]

Detects files on the local disk.

is_local_file(*keys: str | int | float) str | None[source]