Connect Android Device Via WiFi instead of USB and run Test
1. Connect your Android device and adb host computer to a common Wi-Fi network accessible to both 2.Set the target device to listen for a TCP/IP connection 4.Disconnect the USB cable from the target device 3. Connect to the device, identifying it by IP address >> Run the test1.5KViews1like2CommentsKeyword test - How check If image exist
Hello, For test a smartphone application, I want find an Image between other images and touch this. I've defined in Test Complete the image I would found. If this Image is visible at the screen t the beginning of the test, all works correctly. But if image is not visible (slide needed) , It doesn't work. I want to make a test like this (using keymord, I'm not very comfortable wth scripting) : Label : If Image exists Touch Image Else bottom slide Goto label End if But in condition of "IF...THEN" fnction, I can't find a test about visibility of an Image. I tried also While loop , but i can't find a test about visibility of an image.4.1KViews0likes8CommentsExample of evaluateJavascript() usage in Webview for Smartbearbrowser on Android device
Mobile.Device().Process("*SmartBearBrowser").FindChild("ObjectType", "WebView", 2).evaluateJavascript("(function() { return null; })();", new ValueCallback<String>() { @Override public void onReceiveValue(String s) { Log.d("LogName", s); // Prints the string 'null' NOT Java null } }); The above example doesn't seem to work (Error 100). I also can't create ValueCallback's in generell ... Mobile.Device().Process("*SmartBearBrowser").FindChild("ObjectType", "WebView", 2).evaluateJavascript(script, ???) Is were an Example on how to write the Statemant correctly in Testcomplete ?4.4KViews0likes1CommentMobile Cloud Testing
Hello, It would be great for Test Complete to be capable of interacting or producing something that can interact with mobile device farm services such as Amazon Web Services Device Farm and Google Test Lab. Performing Test Complete automated tests through these already great resources could be a very useful tool to create code-less testing cases while also ensuring tested apps perform well on most mobile devices.1.2KViews5likes0Comments