ContributionsMost RecentMost LikesSolutionsIs it a good idea to use TestComplete to automate React Native Apps? Hi guys, We are upgrading to React Native language to build our apps and I was wondering if it is a good idea to use TestComplete to automate regression testing if not what is the better suggested tool for it? Re: unable to find an object Thanks Alex, it works now unable to find an object Hi, I am using iOS 10.2.0 and a mobile app builds on SwiftCode. When I try to find an object using find method, it works fine only first time and mostly it fails. When I was trying to investigate why its happening, I found that I can not even highlight the object from name mapping but it works from Object Browsers. Is anybody has any clue why it happens and how can I make it works. Thanks in advance I am experience random crash when I run test for iOS app When I run my project and every 4th keywordtest my iOS app crash. Anyone experiencing this weird issue? Re: Problem Running Test using TestComplete Thanks for your response mgroen2, Yes, I have tried to close the browsers. After restarting the TC, it works fine for once. During the recording it brakes and after that when I am trying to run my recorded test, it takes lots of time to process one step (such as: Entering a text in the username field, it enters one by one character slowly) Re: Problem Running Test using TestComplete I am experiencing the same issue while recording the web testing. https://community.smartbear.com/t5/Functional-Web-Testing/TestComplete-11-31-After-window-force-update-some-patches-I-am/m-p/123087 After recording a test, I am unable to record or run another test. Mobile recording is working fine, though. TestComplete 11.31: After window force update some patches, I am experience slowness issue I am experiencing slowness issue, might be because of window patch updated last night. But, I can not record new test from the web and also, when trying to run my old recorded test it is quite slow. Everything was working fine yesterday. I was thinking it is because of window update Security and Adobe Flash player patches. Even though, I uninstall those patches and disable window update service I am still experiencing the same issue. I also notice that after restarting the TC if I am running my old recorded test it runs perfectly. But, once I try to record new test it's completely slow. TestComplete: 11.31.2420.7 OS: Window 10 64-bit Memory: 16GB Processor: i7-4790, 3.60GHz 3.60GHz Re: How can I keep the double values as it is e.g. 5.00 instead of 5 and 5.50 instead of 5.5. Thank you for your response Marsha, good point. I have created all variable as String. I thought I found the solution for it using aqConvert.StrToFloat() method or by using float() method, but whenever multiplying two values, output comes remove the last zero. e.g. 25*0.18 = 4.5 instead of 4.50 How can I keep the double values as it is e.g. 5.00 instead of 5 and 5.50 instead of 5.5. I want to compare 2 double values, one saved from website into the variable using Object Property, second coming from python script which I use to calculate tax. Whenever I save the value into a variable running a python script, TC takes off the zero's after decimal point. e.g 5.00 turns to 5 and 5.50 turns to 5.5. I want to keep the value as 5.00 or 5.50 so I can compare the two numbers. How do I do that? I tried using the "round()" & float() methods but this did not work. I also tried converting it to double using the "toDouble" method but that did not work either