Skip to main content

SeeTest Client - HybridSelect

info

Please note that this tool is classified as a Legacy tool. We recommend transitioning to our updated solutions to maintain optimal performance and security in your workflows. For more information on this matter, please reach out to technical support .

HybridSelect(WebViewLocator, Index, Method, Value, Select)

Description

Select an option  from a Select element in a WebView.

Parameters

  • WebViewLocator: The web view element (optional)
    string like id=web or empty for the first WebView in the page if you have more than one web view there.
  • Index: WebView index
  • Method: Property of the Select element (css/id/text/Name/xpath) 
  • Value: Query to identify the Select element. 
  • Select: Value to select from the list.

Usage

Scenario: In the following example, we will select a value from a web drop down list element, and change the language in the Wikipedia home page.

Command usage: In order to select an item from a drop-down list that is a web object - use the HybridSelect command.

Parameters: 

  • WebViewLocator: will be Empty
  • Index: Will be 0
  • Method: Will be set to id
  • Value: Will be set to searchLanguage
  • Select: Will be set to Deutsche 

Result: Value was change to Deutsche

Code Examples

Java Example

client.hybridSelect("", 0, "name", "hl", "Deutsch");

C# Example Expand source

client.hybridSelect("", 0, "name", "hl", "Deutsch");

VBScript Example Expand source

client.hybridSelect "", 0, "name", "hl", "Deutsch"
Report

Python Example Expand source

self.client.hybridSelect("", 0, "name", "hl", "Deutsch")

Perl Example Expand source

$client->hybridSelect("", 0, "name", "hl", "Deutsch");