Description
Saves the Html content from a webview into a string
Parameters
- WebViewLocator - WebView locator string like id=web or empty for the first WebView in page
- Index - Element index
Usage
Scenario: In the following example I will get the HTML of the webview inside the main window of EriBank application (the Balance section is a web part inside the application).
Command usage: This command is used in case of interest in the HTML data of the page that is being tested. the HTML content will be saved into a string.
Parameters:
- WebViewLocator - WebView locator string like id=web or empty for the first WebView in page - will be set to id=balanceWebView
- Index - Element index - will be set to 0
Code Examples
Java Example
String str0 = client.hybridGetHtml("id=balanceWebView", 0);