pub struct LoadedChromePackage { /* private fields */ }Expand description
A downloaded regular Chrome for Testing package paired with a matching ChromeDriver.
Use this when code specifically needs the full Chrome browser package. APIs that can operate
on either regular Chrome or Chrome Headless Shell use LoadedBrowserPackage instead.
Implementations§
Source§impl LoadedChromePackage
impl LoadedChromePackage
Sourcepub fn chrome_executable(&self) -> &Path
pub fn chrome_executable(&self) -> &Path
Path to the cached regular Chrome executable.
Sourcepub fn chromedriver_executable(&self) -> &Path
pub fn chromedriver_executable(&self) -> &Path
Path to the cached ChromeDriver executable.
Trait Implementations§
Source§impl Clone for LoadedChromePackage
impl Clone for LoadedChromePackage
Source§fn clone(&self) -> LoadedChromePackage
fn clone(&self) -> LoadedChromePackage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LoadedChromePackage
impl RefUnwindSafe for LoadedChromePackage
impl Send for LoadedChromePackage
impl Sync for LoadedChromePackage
impl Unpin for LoadedChromePackage
impl UnsafeUnpin for LoadedChromePackage
impl UnwindSafe for LoadedChromePackage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more