Hello
I need to copy some text of a page.
I think adding the text into the log will be the easist way to store it.
I have this on the element already:
I need to copy some text of a page.
I think adding the text into the log will be the easist way to store it.
I have this on the element already:
// Verify 'TextContent' 'Contains' '10QBECAS08103' on 'QmlblACCTRiskSummaryXIAPRefSpan'
Pages.MITraderApplication0.FrameAppIframe.QmlblACCTRiskSummaryXIAPRefSpan.AssertContent().TextContent(ArtOfTest.Common.StringCompareType.Contains, "NewText");
I would like to copy the text out of "QmlblACCTRiskSummaryXIAPRefSpan" and place it into the log:
Log.WriteLine()
If possible I would like to create a global variable (a string) that is created at the start of the test and copy this text into that variable and then i can use that at the end of the test :)
Regards,
Tom