pub struct Verification {
pub verification_type: VerificationType,
pub expected: String,
pub retry_on_failure: bool,
}Expand description
Verification to run after an action.
Fields§
§verification_type: VerificationTypeType of verification.
expected: StringExpected value or condition.
retry_on_failure: boolWhether verification failure should trigger retry.
Implementations§
Source§impl Verification
impl Verification
Sourcepub fn url_contains(pattern: impl Into<String>) -> Verification
pub fn url_contains(pattern: impl Into<String>) -> Verification
Create a URL verification.
Sourcepub fn element_exists(selector: impl Into<String>) -> Verification
pub fn element_exists(selector: impl Into<String>) -> Verification
Create an element exists verification.
Sourcepub fn text_contains(text: impl Into<String>) -> Verification
pub fn text_contains(text: impl Into<String>) -> Verification
Create a text contains verification.
Sourcepub fn js_condition(condition: impl Into<String>) -> Verification
pub fn js_condition(condition: impl Into<String>) -> Verification
Create a JS condition verification.
Sourcepub fn from_json(value: &Value) -> Option<Verification>
pub fn from_json(value: &Value) -> Option<Verification>
Parse from JSON.
Trait Implementations§
Source§impl Clone for Verification
impl Clone for Verification
Source§fn clone(&self) -> Verification
fn clone(&self) -> Verification
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Verification
impl Debug for Verification
Source§impl<'de> Deserialize<'de> for Verification
impl<'de> Deserialize<'de> for Verification
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Verification, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Verification, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Verification
impl Serialize for Verification
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for Verification
impl RefUnwindSafe for Verification
impl Send for Verification
impl Sync for Verification
impl Unpin for Verification
impl UnsafeUnpin for Verification
impl UnwindSafe for Verification
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more