kmathurOccasional ContributorJoined 14 years ago17 Posts3 LikesLikes received1 SolutionView All Badges
ContributionsMost RecentMost LikesSolutionsRe: Android Testing - Unable to connect to device Hi, You can upgrade to Testcomplete 12.5. I used to have the same issue. Turns out the issue was with the USB cable. Try changing the USB cable or connect the device over wifi and then try again Re: iOS testing - Unable to run / install Smartbear browser on iPhone 6 (10.3.3) Hi Thanks for the info. This applies to application we develop for iOS. I am just trying to use the SmartBearBrowser on my iPhone. iOS testing - Unable to run / install Smartbear browser on iPhone 6 (10.3.3) Hi I have an iPhone 6 with iOS 10.3.3. I have to install the smart bear browser on the phone. Here is what I did 1. Added a new application > iOS application 2. Pointed it to SmartBearBrowser.ipa file 3. On next screen selected the option "Add the application as is". The tested app is created. Now right click and run selected. I get error as "Unable to install the iOS application from the archived file". Here are the version details TestComplete : 12.50.4142.7 iOS : 10.3.3 iPhone : 6 Re: iOS testing - Testing on safari Hi I tired and updating phone is really simple. Here are the steps 1. Connect the new phone 2. Open Testcomplete project and goto Testedapps 3. Right click on the Smartbear browser for iOS app and hit Run selected. This will install SmartBearBrowser on the phone. 4. Goto your phone Settings > General > Device management. 5. Click on the Smartbear certificate and click trust You are good to go. Re: iOS testing - Testing on safari Hi The first solution works perfectly. There is just one more question. If i change the iOS device from say 6s to 8, do i have to updated the testing app again? iOS testing - Testing on safari Hi We have a mobile browser experiences of our website and I need to test that on safari on iPhone. When i connect my iPhone and click on Show mobile screen, it says "Device is not running an application that was prepared for testcomoplete". My question 1. Do we need to prepare safari too, to test via testcomplete 2. If yes, are the steps same as for any other app 3. If not is there a documentation i can use Details TestComplete : 12.5 iPhone : 6s iOS : 11 SolvedRe: Android Testing - Unable to connect to device Hi Thanks for the info. I did all that but nothing happened. I disconnect the device and reconnect and it started working. Thanks for the help. Android Testing - Unable to connect to device Hi I am working on testing our website on mobile browser (Chrome). I am using Android device. Here is info on versions Testcomplete : 12.5 Android version : 8.0 Device : Samsung Galaxy S8 plus So I enabled the developer mode, Stay away is on and USB debugging is on. I recorded a small test and it works fine. Now I disconnected the device and after a day connected that again. At this point when I click on show mobile screen on test complete, it throws me error as "Unable to connect to device with device ID <id>". Here is a screen shot of the issue An help will be appreciated. SolvedRe: Getting error "Object doesn't support this property or method" for method that's been executed befor Hi Thanks for the reply. There is nothing wrong in the OpenInViewer code as it executes fine for the first time. Re: Getting error "Object doesn't support this property or method" for method that's been executed befor Hi So the original code is using publishFSFromFile method 5 times (I am using it to test different file types). The openInViewer() works fine for the first time and failing after that. I can re order the methods but it always works fine for the first time and then failing. So here is the complete code exportService("Shapefile",resultFile); publishFSFromFile(itemURL,"Shapefile",resultFile); openInViewer(resultFile); exportService("CSV file",resultFile); publishFSFromFile(itemURL,"CSV",resultFile) openInViewer(resultFile); exportService("FGDB",resultFile); publishFSFromFile(itemURL,"FGDB",resultFile) openInViewer(resultFile); exportService("GeoJson",resultFile); publishFSFromFile(itemURL,"GeoJSON",resultFile) openInViewer(resultFile); So the code works fine for "Shapefile" and fails after that. If I bring "CSV file" part before that, I will execute perfectly for that and fails for "Shapefile"