LocalStorageAttributeValueIs

Function LocalStorageAttributeValueIs 

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

The localStorage attribute value is equal to the given value.

use web_sys_ec::{Ec, Wait};

Wait(1).until(Ec::LocalStorageAttributeValueIs("key", "value"));