pub fn LocalStorageAttributeValueIs(
attr: impl Into<String>,
value: impl Into<String>,
) -> EcExpand description
The localStorage attribute value is equal to the given value.
ⓘ
use web_sys_ec::{Ec, Wait};
Wait(1).until(Ec::LocalStorageAttributeValueIs("key", "value"));