![]() |
Selecting Check boxes by Descriptive Programming - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: VB Scripting/Descriptive Programming (https://www.learnqtp.com/forums/Forum-VB-Scripting-Descriptive-Programming) +--- Thread: Selecting Check boxes by Descriptive Programming (/Thread-Selecting-Check-boxes-by-Descriptive-Programming) |
Selecting Check boxes by Descriptive Programming - sunny rao - 12-11-2008 Hi Ankur and all, I am trying to use DP to check all checkboxes on a particular page. Depending on my product selection on earlier pages 3 or 4 checkboxes are visible remaining are hidden. when I count Code: Set ParentW=Browser("abc").Page("xyz") The result is I get 12 checkboxes since only 3 or 4 are visible at a time and others are hidden. How to solve this problem. RE: Selecting Check boxes by Descriptive Programming - rnickerson - 12-13-2008 I'd try something like this: Code: Function CheckAll() Clearly you would need to provide the Browser and Page descriptions/objects, but then this should show you the number of checkboxes (uncomment the msgbox line) and check them. I hope this helps. RE: Selecting Check boxes by Descriptive Programming - bfakruddin - 12-22-2008 Code: Option Explicit RE: Selecting Check boxes by Descriptive Programming - sunny rao - 01-08-2009 Thanks guys your suggestion helped me. |