ContributionsMost RecentMost LikesSolutionsCapturing dinamic values Hello!! I have this web object: Aliases.browser.pageSearchresultsEs.FindElement("//h1[contains(text(), 'Málaga: 413 alojamientos encontrados')]").ContentText Every time I run the test case the web object changes .(ex: now is Aliases.browser.pageSearchresultsEs.FindElement("//h1[contains(text(), 'Málaga: 413 alojamientos encontrados')]").ContentText but next time could be Aliases.browser.pageSearchresultsEs.FindElement("//h1[contains(text(), 'Málaga: 410 alojamientos encontrados')]").ContentText Is there a way to capture the number dinamically? I need to show the result so I'm using this: BuiltIn.ShowMessage(Aliases.browser.pageSearchresultsEs.FindElement("//h1[contains(text(), 'Málaga: 413 alojamientos encontrados')]").ContentText) Comparing 2 numbers contained in different web objects Hello!! I'm struggling trying to compare 2 numbers , each of them contained in different web objects: first web object second web object I want to check if the first number (1270) is greather than the second one (514),after applying filters. How can I do that by keyword test and also with scripting test? For example if I use the property contentText to compare this 2 objects, TestComplete take the whole "Madrid: 514 encontrados" and I only want to compare the numbers inside the text (1270 v/s 514) See pictures attached to get context, object spy, and Name Mapping SolvedShow object on web page via log.message Hello!! Is there a property to print an object present on a web page via log using keyword test? if not, is there a script to do this?(javascript) thank you! SolvedChecking if items are within selected range Hello there! Any ideas on how to check if the first three items on the webpage (after applying price filter) are within the selected range (ex: $200 - $300) ? What property to use? Image attached Thanks! How to compare web values How can I check if a number on the webpage (ex:numbers of hotels found ) is less than before. (after applying some search filters) SolvedHow to fail if check did not pass Hello! How can I make the test case fail if a property check is not ok? Is there any way of doing it? I'm working with keyword tests since I do not have scripting skills. Thanks! SolvedCheckpoint on web testing Hello! Context: - hotels booking webpage Action: I want to check if the first item after doing a search has more than 3 stars. Should I do this using checkpoints? which one? if not, what should I use to check this? Thank you guys! SolvedShowing by console Context: - Web test - Keyword test (poor scripting knowledge) - web page (hotels booking) After entering the filters and doing the search I want to show by console the first 3 hotels results (Name, Price and Valoration) How can I do that? Thanks! Solved