The Test Anything Protocol (TAP) is a protocol to allow communication between unit tests and a test harness. It allows individual tests (TAP producers) to communicate test results to the testing harness in a language-agnostic way.
1
vote
1answer
16 views
Using functions in TAP Harness instead of test files
Here is my current test harness using TAP :
use TAP::Harness;
my $harness = TAP::Harness->new();
$harness->runtests(['sequential.t']);
I would like to avoid using test files and call directly ...
0
votes
0answers
56 views
“should not happen: no rect-based-test nodes found” error is thrown when click on an embedded svg shape
I got this error when I tap on an embedded svg shape. I load this html file from an Activity that extends DroidGap. In the html file, I embedded the svg and set an onclick event to one shape in the ...
0
votes
0answers
26 views
Sencha Touch allows itemtap double-click
I'm having trouble defining a single click on an item in a list.
I have used the event itemsingletap that solves my problem but the event takes longer to run than the itemtap.
I would use the itemtap ...
0
votes
1answer
35 views
Change UIImageView alpha state on tap
Wish to change UIimageview alpha with tap gesture, for example:
Tap - change alpha to 0.5f
Tap again - alpha back to 1 state
Is it possible?
1
vote
1answer
50 views
Handle tapStart Event on a button
I have an app with a carousel. On all of the carousel pages there are elements such as buttons and datepickers. I would like to handle the tapStart event on each of these elements using Sencha Touch ...
0
votes
2answers
24 views
Proper way to pass on “this” to custom Tap event callback
I picked up a some code for a JavaScript tap event for touch devices here : GitHub page. Credit to Jørn Kinderås for this code.
My problem is that if I do something like this :
$('.support ...
0
votes
1answer
54 views
Tap on display objects in Corona SDK
I'm trying to print taps from 3 different display objects but more than the one tapped are printed in the Terminal.
They need their own specific function but that's not possible as of now. What ...
0
votes
0answers
31 views
Using The Boost Unit Test Framework (UTF) with `make check`
My C++ application has various shell-based integrations tests for standalone programs as well as source code unit tests for the app's API. The tests are run through the make check target, generated ...
0
votes
1answer
23 views
Using TAP progress reporting in a WCF service
I (new to WCF) am writing a WCF service that acquires and analyzes an X-ray spectrum - i.e. it is a long-running process, sometimes several minutes. Naturally, this begs for asynchronous calls so, ...
0
votes
0answers
21 views
How to connect via Tap device
I have now Tap adapter , and willing to setup a tunnel in the private network
PC1 -------PC2--------PC4-------PC5
O:::::::::::::::::::::::::::::::::::::::::::::::::O
i wish to make tunnel between ...
0
votes
2answers
43 views
how to use TAP formatter module in Perl script & running the same on commandline
I have tried this syntax:
use TAP::Harness;
my @tests = glob( 't/*.t' );
my $harness = TAP::Harness->new({ formatter_class => 'TAP::Formatter::HTML',
merge ...
0
votes
1answer
227 views
What is the significance of the wait status in TAP?
This is a question more for my understanding than anything else. I'm using Test::More to run some tests via TAP::Harness.
When a test runs, it returns an exit code and a wait code.
The exit code is ...
0
votes
0answers
15 views
want to change properties of an interface using win32, wmi module
I am using wmi module
x = wmi.WMI().Win32_NetworkAdapterConfiguration(index=9)
// this index for my tap drive
and change properties inside the interface , it doesn't change in the interface out ...
0
votes
0answers
61 views
WPF - Perform tap (touch event) programmatically?
When I perform mouse click event on specific point using coordinate, I can use mouse_event of user32.dll. However, I don't know how to raise tap event on specific point!
Is there a method to solve ...
0
votes
1answer
94 views
Android Widget detect tap and double tap
Okay, heres the problem. I have made a widget, and now need to detect tap and double tap on it, which when triggered should show a different view. For testing purposes I used logging, to see if it is ...
0
votes
0answers
62 views
What is jQuery tap event?
The issue is that i should emulate a tap event without the using of jQuery to call it's handler.
The handler is attached so:
$(element).on("tap",".class", handler);
I've tried so:
event1 = ...
3
votes
1answer
98 views
Disable touch feedback (by code) in windows 8/store apps?
Here is what I am talking about:
I know this visual indication is part of the operating system and that it can be disabled in the control panel. However, I would like to know if it is possible to ...
0
votes
0answers
48 views
IP tuntap command issues
I'm using ip tuntap to create a tap interface, like this:
$ sudo ip tuntap add mode tap tap0
Afterwards, I set the interface up and address it with the common IP commands. I can see then my ...
1
vote
2answers
39 views
How to define a tappable area defined by coordinates
I am writing a small iPad application that draws a shape from a list of coordinates. I would like to tap anywhere inside the shape and have some action occur (i.e. NSLog proving it worked).
Does ...
0
votes
1answer
251 views
Input “tap” Command missing (Android Terminal Emulator)
The command "tap" is missing in my Android Terminal Emulator Console, but my friend has it. What do I have to do?
I have Android 4.0.3 installed, Root Rights, Busybox installed
...
0
votes
0answers
36 views
jQuery tap function firing twice on android
I partially modified the jquery.tapend plugin to stop it firing tap events on touchmove and some other issues it had. Here is the code:
(function($) {
$.fn.tap = function(fn) {
return ...
0
votes
2answers
86 views
Is that necessary to publish app in market to implement deep linking for android
I want to implement deep linking in my app but my app is not published in market now.I can successful send message from my application. When I tap on message it doesn't open my app which is installed ...
1
vote
1answer
247 views
Not getting record on itemtap sencha list
When Taping items the listener is getting invoked but the value is null.My Code
Ext.define('tablet.SelectCategories', {
extend: 'Ext.navigation.View',
xtype: 'selectcategorypanel',
id: ...
0
votes
1answer
174 views
Itemtap on list not working in sencha touch2
I have root view Extends Ext.navigation.View . I'm pushing a view called Add Item.
this.push({
title:'Add Item',
xtype:'additempanel'
});
From that view I'm again pushing a ...
0
votes
1answer
76 views
Cant tap list items in sencha
I have added two buttons to my container and now tap on list items not working.Please help.
Code
Ext.define('X.SelectCategories', {
extend: 'Ext.Container',
xtype: 'selectcategorypanel',
id: ...
1
vote
1answer
80 views
XAML: Tap a textbox to enable?
In XAML and WinRT, Is there a way to set up a textbox so that it is disabled for text input until it is tapped.
I tried setting up the Tapped event and then setting the IsEnabled=true, but that only ...
-2
votes
1answer
83 views
ssh on QEMU problems [closed]
host: ubuntu
guest: distribution based on gentoo embedded
the problem is that after setting up a connection between the host and the guest (via tap interface) I have problems using ssh. Ping works ...
0
votes
0answers
98 views
TAP interface on Windows 7
I'm using QEMU in configuration host - windows 7 and guest gentoo. Since I wanted to make a connection between them I wanted to do it via the TAP interface, but the problem is, that when I install ...
0
votes
1answer
164 views
Tap event in sencha touch is prevented So how can i fire that event now?
Tap event in sencha touch is prevented So how can i fire that event now?
0
votes
1answer
48 views
How to make UITextView register touches when it is currently first responder?
I need a way to know when a UITextView is touched while it is first responder. I have seen some threads about this but I have never figured out how to make it work. I'm assuming there must be a way? ...
0
votes
1answer
60 views
Options appear when tap on UIImageView
In Apple iOs photos app, Each picture take the full screen, but when You tap on it, navigation bar and tab bar with some menu options (like share picture) just appear and remain for a couple of ...
0
votes
1answer
168 views
windows 8 tap and hold event c#
I'm trying to write an application that senses when someone taps and holds something. I am using windows forms. I tried using the mouse down even but it doesn't appear to fire all the time. This is ...
0
votes
1answer
54 views
handle tap click on the background iphone
I have a view which contains different textfield.
Clicking on each taxtfield brings up a keyboard and if I click outside the textField the keyboard disappears but the view is also disappear! how can ...
1
vote
1answer
124 views
Why TouchDown, TouchUp events don't appear in WPF?
I'm developping a Windows Phone 7.1 application. I make the design with Expression Blend 4 and then, I program the code in WPF.
I have some Path objects and I want to detect the TouchDown and TouchUp ...
0
votes
1answer
30 views
Blackberry How to Block the Screen From Tapping When Status.Show Invoked?
I want to block my screen for listening a tap or click when the show.status("Please Wait",2 AnyTimeLimit); is invoked.
Actually I'm sending a hit to a web service and meanwhile I'm displaying a ...
2
votes
1answer
111 views
Is it fine to write “skip() unless ok()” with Test::More?
I've gone through the documentation and can't find a definitive answer to my query.
In a lot of my tests, the execution of a SKIP block is conditional to the success of a prior test.
So, for ...
0
votes
0answers
21 views
How to determine which character did a user tap in UITextView
When user tapped in UITextView, how do I know which exact character did he tapped on?
[id characterRangeAtPoint:] does not work well, because it cannot tell if user did not tap on any characters or ...
1
vote
1answer
116 views
jqueryMobile tap and bubbling/propagation
see this sample in android 2.x browser..its a sample to replicate a scenario in my application..
http://johnchacko.net/samples/tap.html
its abt listening to 'tap' and calling changePage from ...
0
votes
1answer
52 views
Getting individual results of aggregated TAP output from TAP::Harness
I'm running some tests via TAP::Harness and now I'm trying to get all the individual results from the TAP parser. What I do is first run the tests:
my $harness = TAP::Harness->new( { verbosity ...
0
votes
2answers
68 views
Making a UILabel subview in UIScrollView to be firstResponder
I have added a label with some text and links to an ScrollView,
when you tap on those links (in the label), a delegate method will call, displays a popover and show some related information.
but ...
0
votes
0answers
114 views
JQuery Mobile list elements overly sensitive to taps
I've noticed that when I have long list elements in JQuery Mobile and I try to scroll them, I accidentally select an element. Overall the act of scrolling tends to get confused with tapping.
I did ...
5
votes
1answer
121 views
Trouble building TAP::Formatter::HTML on Windows
My cpanTAP::Formatter::HTML installation hangs at 01_basic.t and I'm not sure why:
CPAN.pm: Going to build S/SP/SPURKIS/TAP-Formatter-HTML-0.09.tar.gz
# running Build.PL --installdirs site
Set up ...
0
votes
2answers
302 views
Difference between touch and tap in Corona
I don't exactly understand what's the difference between tap and touch in Corona. I use both of them and when one touches on an object both listened for event until I wrote this piece of code which ...
0
votes
0answers
76 views
Replace Alertbox with bubblemessage onTap a marker
I want ontap on a marker in an android application to appear a bubble message with some information about the specific place.
I have done this with alertboxes but i cant find out how to do this with a ...
0
votes
1answer
122 views
Gestures handled identically in iPhone and iPad
I'm working on an app right now where a tap will be handled identically on the iPhone as on the iPad. I don't have an iPhone, so I'm using the simulator to test for now. I thought I could simply click ...
0
votes
1answer
111 views
Tap Count & Lap [closed]
I created sample tap count app. But I don't know how to count lap. Example: when hit count 100, lap is 1. when hit count 200 lap is 2. I used following code. Thanks. I am xcode beginner.
Following ...
1
vote
1answer
195 views
Corona: Double tap / single tap
I'm attempting to detect both single and double taps in Corona SDK. I have utilised:
system.setTapDelay(0.5)
...in my main.lua file which I understood would ensure a single tap event was not passed ...
0
votes
1answer
157 views
Add marker on map by tap and hold on location
I've managed to create an google API and use maps and read guides, but none of them solves the following feature:
Tap and hold on a certain location to add a marker
In most of existing guides it ...
0
votes
1answer
196 views
jQuery Mobile on iOS - Wrong target on tap event
I'm working on displaying some text in an UIWebView on iOS.
I'd like to get the content of the HTML element tapped by the user. If he taps on a paragraph for example, a popup shows the paragraph ...
0
votes
2answers
926 views
iOS - Multiple Tap gesture recognizers
In my application, i've to detect single, double and triple taps. So, I'm using UITapGestureRecognizer. I'm using the following code:
UITapGestureRecognizer *oneTap = [[UITapGestureRecognizer ...






