Skip to content

Commit

Permalink
Fix webdriver urls used in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
grelner committed Sep 27, 2024
1 parent 254da86 commit 1c39697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thirtyfour/tests/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ pub fn make_capabilities(s: &str) -> Capabilities {
/// Get the WebDriver URL for the specified browser.
pub fn webdriver_url(s: &str) -> String {
match s {
"firefox" => "http://localhost:4444/wd/hub".to_string(),
"chrome" => "http://localhost:9515/wd/hub".to_string(),
"firefox" => "http://localhost:4444".to_string(),
"chrome" => "http://localhost:9515".to_string(),
browser => unimplemented!("unsupported browser backend {}", browser),
}
}
Expand Down

0 comments on commit 1c39697

Please sign in to comment.