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>) -> Self
pub fn url_contains(pattern: impl Into<String>) -> Self
Create a URL verification.
Sourcepub fn element_exists(selector: impl Into<String>) -> Self
pub fn element_exists(selector: impl Into<String>) -> Self
Create an element exists verification.
Sourcepub fn text_contains(text: impl Into<String>) -> Self
pub fn text_contains(text: impl Into<String>) -> Self
Create a text contains verification.
Sourcepub fn js_condition(condition: impl Into<String>) -> Self
pub fn js_condition(condition: impl Into<String>) -> Self
Create a JS condition verification.
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<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. 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 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