monkeytalk

How to disable Dexguard?

為{幸葍}努か 提交于 2021-02-18 17:59:48
问题 I went through the documentation looking for the way how to disable dexguard when running gradle but keeping plugin: 'dexguard'. I tried to modify proguardFile getDefaultDexGuardFile('dexguard-debug.pro') to do nothing but unfortunately no luck. I need to set no dexguard functionality for my functional testing suit MonkeyTalk which cannot instrument the apk now. How to turn the dexguard functionality off? 回答1: Update from zatziky's answer for current Android Gradle Plugin (v1.0+) and Dexguard

How to disable Dexguard?

人走茶凉 提交于 2021-02-18 17:59:28
问题 I went through the documentation looking for the way how to disable dexguard when running gradle but keeping plugin: 'dexguard'. I tried to modify proguardFile getDefaultDexGuardFile('dexguard-debug.pro') to do nothing but unfortunately no luck. I need to set no dexguard functionality for my functional testing suit MonkeyTalk which cannot instrument the apk now. How to turn the dexguard functionality off? 回答1: Update from zatziky's answer for current Android Gradle Plugin (v1.0+) and Dexguard

MonkeyTalk not recognizing UITextfield input event [closed]

天涯浪子 提交于 2019-12-23 05:31:04
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I am using Monkeytalk v1.0.62 and its not recognizing textfield input event inside the UIAlertview. If I type any text inside the textfield, it shows nothing while recording or in playback. It seems like the monkeytalk wont recognize UITextfield input or does it? 回答1: To record text input in UIAlertView text

How can i automate 'Settings' app in real iOS devices?

对着背影说爱祢 提交于 2019-12-13 15:57:05
问题 I tried with Appium, UI Automation and Monkey Talk to automate native app automation for real iOS device. Mentioned tools are not supporting real iOS native app automation. Is there a (freeware) tool that automates native apps of real iOS devices? 回答1: You can try the following in your Terminal: instruments -v -w YOUR_DEVICE_ID -t /Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.xrplugin/Contents/Resources/Automation.tracetemplate

Monkey Talk with Android Studio Error:Execution failed for task ':app:compileDebugJava'

…衆ロ難τιáo~ 提交于 2019-12-13 04:33:13
问题 I am following this tutorial to make monkeytalk agent build so that i can record the event and write some test cases. I have also downloaded git project with is running but is not showing in monkey talk IDE and no events are recording. I have also made my own project and follow all the steps from 1 to 9 . I am testing it on real device so I skipped 10th step . The issue I am facing is that when I sync the project the gradle is building properly but when I am running the project it give me

Android Annotations and MonkeyTalk?

依然范特西╮ 提交于 2019-12-12 13:07:08
问题 I just tried to update my project which uses Android Annotations to include the MonkeyTalk agent. However, as soon as I switch the project to an AspectJ project, all my Android Annotations references are not recognized. Has anybody successfully used MonkeyTalk in an Android Annotations project? I'm using Eclipse 4.2 SR2. It looks like this issue has been raised on the Android Annotations FAQ: https://github.com/excilys/androidannotations/wiki/FAQ#wiki-aspectj In order to "fix" it, you have to

send an email using monkey talk automation tool

戏子无情 提交于 2019-12-12 03:55:24
问题 Is it possible to send an html email report through a monkey talk automation tool. If it is possible please provide any code or url. Thanks, Ramakrishna. 回答1: Use a CI (continuous Integration tool) with monkeytalk. like jenkins+monkeytalk it is bit hard to configure it. but it can be done. use jenkins to automate the process of checkout code from repository and write a shell script to build the project and runtest cases with monkeytalk. after finish tests jenkins will email the reports to the

My Date Picker is not Working

淺唱寂寞╮ 提交于 2019-12-12 03:37:25
问题 I'm trying to use a date picker to select a date in my application, but I've been stopped by the following error. Can anyone help me in clearing this issue? The date picker dialog should pop-up on touching an EditText. Here's my Code: myCalendar = Calendar.getInstance(); fromDate_textView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub new DatePickerDialog(Sell_Product_Activity.this, date, myCalendar.get(Calendar.YEAR)

MonkeyTalk : Verify custom UITableViewCell Label text without select the cell

*爱你&永不变心* 提交于 2019-12-11 06:06:12
问题 I have an iPhone application that has a search box and UITableView with custom UITableViewCells. This Table Loaded with search results after user enter a search word and tap search. I need to test the search results with MonkeyTalk. (using MonkeyTalk script or JavaScript version of it). I want to retrieve/verify that 2nd Label of first CustomUITableViewCell contains the search text without selecting the cell. So far I'm able to get number of items of the each table section using var count =

Logging value of a variable in MonkeyTalk IDE Javascript file

孤人 提交于 2019-12-11 03:43:04
问题 I'm using MonkeyTalk IDE Beta2 for testing iPad application. I exported the javascript from the MonkeyTalk IDE and got a new .js file. I am storing the Boolean value of a Verify command in a var and want to see what is its value, and accordingly do custom logic. I tried document.write , console.log and alert used in javascript but got an error that they are not defined. Please help me with this. Also, is it possible to output the result of a test as XML (as in FoneMonkey) or as an Excel