{"id":259227,"date":"2024-06-01T20:47:20","date_gmt":"2024-06-01T20:47:20","guid":{"rendered":"https:\/\/namso-gen.co\/blog\/?p=259227"},"modified":"2024-06-01T20:47:20","modified_gmt":"2024-06-01T20:47:20","slug":"how-to-select-a-value-from-a-weblist-in-uft","status":"publish","type":"post","link":"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/","title":{"rendered":"How to select a value from a weblist in UFT?"},"content":{"rendered":"<p>**How to select a value from a weblist in UFT?**<\/p>\n<p>Selecting a value from a weblist is a common task in automated testing using UFT (Unified Functional Testing). A weblist, also known as a dropdown or a combobox, allows the user to select one option from a list of predefined values. In UFT, there are different methods to accomplish this task. Let&#8217;s discuss the steps to select a value from a weblist in UFT.<\/p>\n<p>1. **Identify the weblist object**: The first step is to identify the weblist object on the web page. UFT provides various methods to identify the object, such as using the object spy, descriptive programming, or recording.<\/p>\n<p>2. **Use the Select method**: Once the weblist object is identified, you can use the Select method to choose the desired value. The Select method is a built-in method in UFT, specifically designed to interact with weblist objects.<\/p>\n<p>3. **Find the value by visible text**: One way to select a value from a weblist is by using the visible text associated with each option. For example, if the weblist contains options like &#8220;Option 1,&#8221; &#8220;Option 2,&#8221; and &#8220;Option 3,&#8221; you can select &#8220;Option 2&#8221; by specifying its visible text.<\/p>\n<p>4. **Use the WebList object**: UFT provides a WebList object, which represents a weblist control. You can use this object to perform actions on weblists, such as selecting values. The WebList object has a Select method that can be used to choose a value by visible text or index.<\/p>\n<p>5. **Specify the visible text**: To select a value by visible text, you need to specify the visible text associated with the desired option. For example, to select &#8220;Option 2&#8221; from a weblist, you can use the following code:<br \/>\n&#8220;`vbscript<br \/>\nBrowser(&#8220;Browser&#8221;).Page(&#8220;Page&#8221;).WebList(&#8220;WebList&#8221;).Select &#8220;Option 2&#8221;<br \/>\n&#8220;`<\/p>\n<p>6. **Specify the index**: Alternatively, you can select a value by index, which represents the position of the option in the weblist. The index starts from 0 for the first option, 1 for the second option, and so on. Using the index can be useful when the visible text of the options is dynamic or changes frequently.<\/p>\n<p>7. **Using index to select a value**: To select a value by index, you can modify the code snippet mentioned above as follows:<br \/>\n&#8220;`vbscript<br \/>\nBrowser(&#8220;Browser&#8221;).Page(&#8220;Page&#8221;).WebList(&#8220;WebList&#8221;).Select 1<br \/>\n&#8220;`<\/p>\n<p>8. **Verify the selection**: After selecting a value from the weblist, it is essential to verify that the correct value has been chosen. You can do this by retrieving the selected value from the weblist and comparing it with the expected value.<\/p>\n<p>9. **Get the selected value**: UFT provides a GetROProperty method to retrieve the properties of an object. You can use the GetROProperty method with the &#8220;value&#8221; property to get the selected value from the weblist.<\/p>\n<p>10. **Compare the selected value**: Once you have retrieved the selected value, you can compare it with the expected value using conditional statements or assertions. This ensures that the correct value has been selected from the weblist.<\/p>\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_62 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title \" >Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><a href=\"#\" class=\"ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle\" aria-label=\"Toggle Table of Content\"><span class=\"ez-toc-js-icon-con\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/span><\/a><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#FAQs\" title=\"FAQs\">FAQs<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q1_What_if_the_weblist_items_are_dynamically_generated\" title=\"Q1. What if the weblist items are dynamically generated?\">Q1. What if the weblist items are dynamically generated?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q2_How_can_I_select_multiple_values_from_a_weblist\" title=\"Q2. How can I select multiple values from a weblist?\">Q2. How can I select multiple values from a weblist?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q3_Can_I_select_a_value_from_a_weblist_based_on_its_value_attribute\" title=\"Q3. Can I select a value from a weblist based on its value attribute?\">Q3. Can I select a value from a weblist based on its value attribute?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q4_How_can_I_handle_a_weblist_that_allows_free-text_entry\" title=\"Q4. How can I handle a weblist that allows free-text entry?\">Q4. How can I handle a weblist that allows free-text entry?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q5_Is_it_possible_to_select_a_value_from_a_weblist_without_using_the_Select_method\" title=\"Q5. Is it possible to select a value from a weblist without using the Select method?\">Q5. Is it possible to select a value from a weblist without using the Select method?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-7\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q6_Can_I_emulate_the_users_interaction_with_a_weblist_while_selecting_a_value\" title=\"Q6. Can I emulate the user&#8217;s interaction with a weblist while selecting a value?\">Q6. Can I emulate the user&#8217;s interaction with a weblist while selecting a value?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-8\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q7_How_can_I_handle_a_weblist_with_a_large_number_of_options\" title=\"Q7. How can I handle a weblist with a large number of options?\">Q7. How can I handle a weblist with a large number of options?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-9\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q8_Can_I_select_a_value_from_a_disabled_weblist\" title=\"Q8. Can I select a value from a disabled weblist?\">Q8. Can I select a value from a disabled weblist?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-10\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q9_How_can_I_select_a_value_from_a_weblist_that_is_hidden_or_not_visible\" title=\"Q9. How can I select a value from a weblist that is hidden or not visible?\">Q9. How can I select a value from a weblist that is hidden or not visible?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-11\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q10_Can_I_select_a_value_from_a_weblist_inside_a_frame\" title=\"Q10. Can I select a value from a weblist inside a frame?\">Q10. Can I select a value from a weblist inside a frame?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-12\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q11_How_can_I_handle_a_weblist_with_dynamic_options\" title=\"Q11. How can I handle a weblist with dynamic options?\">Q11. How can I handle a weblist with dynamic options?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-13\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#Q12_What_happens_if_I_select_a_value_that_is_not_present_in_the_weblist\" title=\"Q12. What happens if I select a value that is not present in the weblist?\">Q12. What happens if I select a value that is not present in the weblist?<\/a><\/li><\/ul><\/nav><\/div>\n<h3><span class=\"ez-toc-section\" id=\"FAQs\"><\/span>FAQs<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<h3><span class=\"ez-toc-section\" id=\"Q1_What_if_the_weblist_items_are_dynamically_generated\"><\/span>Q1. What if the weblist items are dynamically generated?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA1. If the weblist items are dynamically generated, you can use the Select method along with regular expressions to select the desired value based on a pattern.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Q2_How_can_I_select_multiple_values_from_a_weblist\"><\/span>Q2. How can I select multiple values from a weblist?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA2. UFT does not natively support selecting multiple values from a weblist. However, you can use custom code or built-in methods like SendKeys to simulate multiple selections.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Q3_Can_I_select_a_value_from_a_weblist_based_on_its_value_attribute\"><\/span>Q3. Can I select a value from a weblist based on its value attribute?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA3. Yes, you can use the Select method with the value attribute instead of the visible text. This can be useful when the visible text is not unique or when it is not visible to the user.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Q4_How_can_I_handle_a_weblist_that_allows_free-text_entry\"><\/span>Q4. How can I handle a weblist that allows free-text entry?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA4. UFT provides a method called Set that can be used to set the value of a weblist, including free-text entry. You can use the Set method to enter the desired value into the weblist.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Q5_Is_it_possible_to_select_a_value_from_a_weblist_without_using_the_Select_method\"><\/span>Q5. Is it possible to select a value from a weblist without using the Select method?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA5. While the Select method is the recommended way to select a value from a weblist, you can also simulate the selection by using methods like Click, Set, or SendKeys. However, these methods may not work consistently across different weblist implementations.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Q6_Can_I_emulate_the_users_interaction_with_a_weblist_while_selecting_a_value\"><\/span>Q6. Can I emulate the user&#8217;s interaction with a weblist while selecting a value?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA6. Yes, you can use methods like Click, Drag, or Hover to emulate the user&#8217;s interaction with a weblist before selecting a value. These methods are particularly useful when the weblist has custom behavior or requires specific actions to display the options.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Q7_How_can_I_handle_a_weblist_with_a_large_number_of_options\"><\/span>Q7. How can I handle a weblist with a large number of options?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA7. If a weblist has a large number of options, you can use the ScrollIntoView method to scroll to a specific option before selecting it. This ensures that the desired option is visible before selecting it.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Q8_Can_I_select_a_value_from_a_disabled_weblist\"><\/span>Q8. Can I select a value from a disabled weblist?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA8. No, you cannot select a value from a disabled weblist using UFT. You need to ensure that the weblist is enabled before attempting to select a value from it.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Q9_How_can_I_select_a_value_from_a_weblist_that_is_hidden_or_not_visible\"><\/span>Q9. How can I select a value from a weblist that is hidden or not visible?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA9. If a weblist is hidden or not visible, you need to make it visible before attempting to select a value from it. You can use methods like SetTOProperty or Descriptive Programming to modify the object properties and make it visible.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Q10_Can_I_select_a_value_from_a_weblist_inside_a_frame\"><\/span>Q10. Can I select a value from a weblist inside a frame?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA10. Yes, you can select a value from a weblist inside a frame. You need to switch the focus to the frame containing the weblist using the Frame method before interacting with it.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Q11_How_can_I_handle_a_weblist_with_dynamic_options\"><\/span>Q11. How can I handle a weblist with dynamic options?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA11. If a weblist has dynamically changing options, you can retrieve the available options using the GetROProperty method along with the &#8220;all items&#8221; property. Then, you can select the desired value from the list of available options.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Q12_What_happens_if_I_select_a_value_that_is_not_present_in_the_weblist\"><\/span>Q12. What happens if I select a value that is not present in the weblist?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nA12. If you select a value that is not present in the weblist, UFT will throw an error. It is essential to ensure that the value you want to select is a valid option in the weblist before attempting the selection.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>**How to select a value from a weblist in UFT?** Selecting a value from a weblist is a common task in automated testing using UFT (Unified Functional Testing). A weblist, also known as a dropdown or a combobox, allows the user to select one option from a list of predefined values. In UFT, there are &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to select a value from a weblist in UFT?\" class=\"read-more button\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#more-259227\">Read more<span class=\"screen-reader-text\">How to select a value from a weblist in UFT?<\/span><\/a><\/p>\n","protected":false},"author":65,"featured_media":107420,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[86279],"tags":[],"class_list":["post-259227","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-learn","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to select a value from a weblist in UFT?<\/title>\n<meta name=\"description\" content=\"**How to select a value from a weblist in UFT?** Selecting a value from a weblist is a common task in automated testing using UFT (Unified Functional\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to select a value from a weblist in UFT?\" \/>\n<meta property=\"og:description\" content=\"**How to select a value from a weblist in UFT?** Selecting a value from a weblist is a common task in automated testing using UFT (Unified Functional\" \/>\n<meta property=\"og:url\" content=\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/\" \/>\n<meta property=\"og:site_name\" content=\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/synchronyfinancial\" \/>\n<meta property=\"article:published_time\" content=\"2024-06-01T20:47:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2024\/03\/faq.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Timothy Mathis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@synchrony\" \/>\n<meta name=\"twitter:site\" content=\"@synchrony\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Timothy Mathis\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/\"},\"author\":{\"name\":\"Timothy Mathis\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/ffa5be155490b2344e28f672fcc1e318\"},\"headline\":\"How to select a value from a weblist in UFT?\",\"datePublished\":\"2024-06-01T20:47:20+00:00\",\"dateModified\":\"2024-06-01T20:47:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/\"},\"wordCount\":1069,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\"},\"articleSection\":[\"Learn\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/\",\"url\":\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/\",\"name\":\"How to select a value from a weblist in UFT?\",\"isPartOf\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#website\"},\"datePublished\":\"2024-06-01T20:47:20+00:00\",\"dateModified\":\"2024-06-01T20:47:20+00:00\",\"description\":\"**How to select a value from a weblist in UFT?** Selecting a value from a weblist is a common task in automated testing using UFT (Unified Functional\",\"breadcrumb\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/namso-gen.co\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to select a value from a weblist in UFT?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#website\",\"url\":\"https:\/\/namso-gen.co\/blog\/\",\"name\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\",\"description\":\"In Namso gen blog you can get many tips regarding to Credit cards, VCC, Credit card security etc. You can generate credit cards by using Namso-gen.co\",\"publisher\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/namso-gen.co\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\",\"name\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\",\"url\":\"https:\/\/namso-gen.co\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png\",\"contentUrl\":\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png\",\"width\":500,\"height\":164,\"caption\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\"},\"image\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/synchronyfinancial\",\"https:\/\/twitter.com\/synchrony\",\"https:\/\/www.youtube.com\/synchronyfinancial\",\"https:\/\/www.instagram.com\/synchrony\",\"https:\/\/www.linkedin.com\/company\/synchrony-financial\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/ffa5be155490b2344e28f672fcc1e318\",\"name\":\"Timothy Mathis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"Timothy Mathis\"},\"description\":\"Guest author Timothy Mathis has meticulously crafted and revised this article to the best of their knowledge and understanding. Readers are strongly advised to exercise caution, verify information independently, and rely on their own judgment when considering the information provided. Read more articles on Namso Gen here.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to select a value from a weblist in UFT?","description":"**How to select a value from a weblist in UFT?** Selecting a value from a weblist is a common task in automated testing using UFT (Unified Functional","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/","og_locale":"en_US","og_type":"article","og_title":"How to select a value from a weblist in UFT?","og_description":"**How to select a value from a weblist in UFT?** Selecting a value from a weblist is a common task in automated testing using UFT (Unified Functional","og_url":"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/","og_site_name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","article_publisher":"https:\/\/www.facebook.com\/synchronyfinancial","article_published_time":"2024-06-01T20:47:20+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2024\/03\/faq.png","type":"image\/png"}],"author":"Timothy Mathis","twitter_card":"summary_large_image","twitter_creator":"@synchrony","twitter_site":"@synchrony","twitter_misc":{"Written by":"Timothy Mathis","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#article","isPartOf":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/"},"author":{"name":"Timothy Mathis","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/ffa5be155490b2344e28f672fcc1e318"},"headline":"How to select a value from a weblist in UFT?","datePublished":"2024-06-01T20:47:20+00:00","dateModified":"2024-06-01T20:47:20+00:00","mainEntityOfPage":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/"},"wordCount":1069,"commentCount":0,"publisher":{"@id":"https:\/\/namso-gen.co\/blog\/#organization"},"articleSection":["Learn"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/","url":"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/","name":"How to select a value from a weblist in UFT?","isPartOf":{"@id":"https:\/\/namso-gen.co\/blog\/#website"},"datePublished":"2024-06-01T20:47:20+00:00","dateModified":"2024-06-01T20:47:20+00:00","description":"**How to select a value from a weblist in UFT?** Selecting a value from a weblist is a common task in automated testing using UFT (Unified Functional","breadcrumb":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/namso-gen.co\/blog\/how-to-select-a-value-from-a-weblist-in-uft\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/namso-gen.co\/blog\/"},{"@type":"ListItem","position":2,"name":"How to select a value from a weblist in UFT?"}]},{"@type":"WebSite","@id":"https:\/\/namso-gen.co\/blog\/#website","url":"https:\/\/namso-gen.co\/blog\/","name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","description":"In Namso gen blog you can get many tips regarding to Credit cards, VCC, Credit card security etc. You can generate credit cards by using Namso-gen.co","publisher":{"@id":"https:\/\/namso-gen.co\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/namso-gen.co\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/namso-gen.co\/blog\/#organization","name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","url":"https:\/\/namso-gen.co\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png","contentUrl":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png","width":500,"height":164,"caption":"Namso Gen Blog - Free Credit Card Generator [100% Valid]"},"image":{"@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/synchronyfinancial","https:\/\/twitter.com\/synchrony","https:\/\/www.youtube.com\/synchronyfinancial","https:\/\/www.instagram.com\/synchrony","https:\/\/www.linkedin.com\/company\/synchrony-financial"]},{"@type":"Person","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/ffa5be155490b2344e28f672fcc1e318","name":"Timothy Mathis","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"Timothy Mathis"},"description":"Guest author Timothy Mathis has meticulously crafted and revised this article to the best of their knowledge and understanding. Readers are strongly advised to exercise caution, verify information independently, and rely on their own judgment when considering the information provided. Read more articles on Namso Gen here."}]}},"_links":{"self":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts\/259227","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/users\/65"}],"replies":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/comments?post=259227"}],"version-history":[{"count":0,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts\/259227\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/media\/107420"}],"wp:attachment":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/media?parent=259227"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/categories?post=259227"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/tags?post=259227"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}