Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/travis/before
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set -x;
bin/download_geckodriver;

# Install chromedriver
version="92.0.4515.107" bin/download_chromedriver;
version="108.0.5359.22" bin/download_chromedriver;
export CHROME_BIN=/usr/bin/google-chrome-stable
export CHROME_HEADLESS=1

Expand Down
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,10 @@ impl DriverSession {
self.session_id))?;
Screenshot::from_string(v.value)
}

pub fn capabilities(&self) -> &BTreeMap<String, JsonValue> {
&self.capabilities
}
}

impl Drop for DriverSession {
Expand Down