MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / is_unstable

Method is_unstable

rust/src/lib.rs:810–816  ·  view source on GitHub ↗
(&self, browser_version: &str)

Source from the content-addressed store, hash-verified

808 }
809
810 fn is_unstable(&self, browser_version: &str) -> bool {
811 browser_version.eq_ignore_ascii_case(BETA)
812 || browser_version.eq_ignore_ascii_case(DEV)
813 || browser_version.eq_ignore_ascii_case(NIGHTLY)
814 || browser_version.eq_ignore_ascii_case(CANARY)
815 || browser_version.eq_ignore_ascii_case(ESR)
816 }
817
818 fn is_browser_version_unstable(&self) -> bool {
819 self.is_unstable(self.get_browser_version())

Implementers 8

edge.rsrust/src/edge.rs
iexplorer.rsrust/src/iexplorer.rs
safaritp.rsrust/src/safaritp.rs
electron.rsrust/src/electron.rs
chrome.rsrust/src/chrome.rs
firefox.rsrust/src/firefox.rs
grid.rsrust/src/grid.rs
safari.rsrust/src/safari.rs

Calls

no outgoing calls

Tested by

no test coverage detected