LocationSearchIs

Function LocationSearchIs 

Source
pub fn LocationSearchIs(value: impl Into<String>) -> Ec
Expand description

The window.location.search is equal to the given value.

use web_sys_ec::{Ec, Wait};

Wait(1).until(Ec::LocationSearchIs("?key=value"));