| VerifyThat(DriverContext, Action) Method |
Framework to automate tests using Selenium WebDriver
Verify assert conditions.
Namespace: OcarambaAssembly: OcarambaLite (in OcarambaLite.dll) Version: 1.0.0+d8e789f8644d1a9b63485ad7914acf4f489f3ef9
Syntax public static void That(
DriverContext driverContext,
Action myAssert
)
Request Example
Parameters
- driverContext DriverContext
- Container for driver.
- myAssert Action
- Assert condition.
Example How to use it:
Verify.That(this.DriverContext, () => Assert.AreEqual(parameters["number"], links.CountLinks()));
See Also