Can somebody please explain what exactly this code statement from the tutorial does:
Assert.IsTrue(ActiveBrowser.ContainsText(Data[
"Col1"
].ToString()));
I understand
Data[
"Col1"
].ToString() - this is the way to access data for the data bound test.
ActiveBrowser.ContainsText - what it actually is? Browser caption text? All texts in all tabs of the active browser? What?
Assert.IsTrue() - what exactly it does? What happens if its parameter is true or false? Is it how Validation logic is presented in the code? But we should be able to branch on validation statement. Can we branch on Assert.IsTrue ?
Thank you!
Konstantin