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]ΒΆ