pub trait GetTextUseCase: Send + Sync {
// Required method
fn execute(
&self,
input: ElementStateInput,
) -> Result<GetTextOutput, SessionError>;
}pub trait GetTextUseCase: Send + Sync {
// Required method
fn execute(
&self,
input: ElementStateInput,
) -> Result<GetTextOutput, SessionError>;
}