Tagged Questions

For issues relating to simulating a system, action, function, or behavior.

learn more… | top users | synonyms

38
votes
7answers
14k views

Network tools that simulate slow network connection

I would like to visually evaluate web pages response time for several Internet connections types (DSL, Cable, T1, dial-up etc.) while my browser and web server are on the same LAN or even on the same ...
7
votes
5answers
1k views

Testing WIA without having a scanner/camera device

I wrote a simple scanning code using WIA. I don't have a scanner device so I can't test it. Can I simulate a WIA device to testing it ?
7
votes
4answers
518 views

R: How do I best simulate an arbitrary univariate random variate using its probability function?

R: What's the best way to simulate an arbitrary univariate random variate if only its probability/density function is available?
6
votes
2answers
117 views

what is the difference between Emulate and Simulate?

I am asking this question in the context of computers and microcontrollers. I need a concise answer. These words seems to get mixed up, I don't know if they are interchangangeable but have a feeling ...
5
votes
4answers
428 views

How to simulate DDOS/Slashdotting?

So, I'd like to get more experience working with high-traffic websites, but unfortunately the Internet is not beating down the doors to my blog. How can I simulate tens/hundreds of hits per second on ...
5
votes
2answers
426 views

How to simulate mouse clicks and keypresses in F#

I'm doing a program that's supposed to move the mouse around and press automatically at places where I specify in the code. Right now i've managed to move the cursor by using this line: ...
5
votes
5answers
700 views

Is it possible to simulate closures in PHP 5.2.x not using globals?

Is it possible to simulate closures in PHP 5.2.x not using globals? I could think of a way that would pass the desired variables as extra parameters to the closure but that just doesn't feel like best ...
4
votes
4answers
915 views

How can i simulate a slow network connection

I have a Bet Server which sends bet data to a game terminal I would like to simulate a slow network connection. i want the network to be really busy, heavily loaded so i can see how the bet server ...
4
votes
2answers
1k views

Simulate mouse select with Javascript?

I would like to select text on the page by simulating a left mouse button down and drag it to a specified x,y location (in pixels) Can this be done with JavaScript? Thank you.
4
votes
1answer
659 views

Help: Maximum number of clients reached - Segmentation fault

I want to simulate many key press events. I found a solution by using XTestFakeKeyEvent, but when I simulate more than 210 times my program raises a "Maximum number of clients reached" segmentation ...
3
votes
1answer
171 views

How to mock a complex REST call from the server side?

While working with javascript that uses REST services extensively -- including using vocabs like GET, PUT, POST, DELETES, etc; I have found it hard to mock the server side so front end development can ...
3
votes
2answers
89 views

Setting up a web developer lab for learning purposes

I'm not a developer by profession. Therefore, I'm not exposed to real world technical problems that face professional developers. I read/heard about web farms, integration between different systems, ...
3
votes
4answers
207 views

Simulate a class of type enum

how can I do to simulate a class of type enum in java <5.0 ..?? public final class Week { private static final Day[] _week = {Day.MONDAY, Day.TUESDAY, Day.WEDNESDAY, Day.THURSDAY, Day.FRIDAY, ...
3
votes
3answers
1k views

C# Stress Test - Simulate multiple access to a given shared resource

How can you simulate/stress test about 100 users accessing a given shared resource (e.g. Database) in a c# unit test?
3
votes
4answers
1k views

How to simulate JavaScript in a client C# Applications

I'm writing a web crawler (web spider) that crawl all links in a website. My application is a Win32 App, written in C# with .Net framework 3.5. Now I'm using HttpWebRequest an HttpWebResponse to ...
2
votes
1answer
56 views

Client Access AS400 Java wrapper

Is there free/non-free Client Access Java bases wrapper that can simulating End-User typing into Client Access Session login with popup Dialog/Window for UserName & PassWord moving to the ...
2
votes
2answers
442 views

How to simulate TAB key press in Silverlight when user presses ENTER with MVVM?

How would you simulate a key press in MVVM in a Silverlight project? I want to simualte the TAB key press when user presses ENTER, so it moves to the next textbox
2
votes
1answer
134 views

Unknown caller android

I am developing applicaton that listens for different user calls. One of possibilites is that unknown caller will call me (without number/ restricted number). I would like to study this case, how I ...
2
votes
1answer
182 views

Simulate CSRF Attack

I want to simulate CSRF Attack to check my website vulnerability. I tried it on my asp.net webapplication but failed to simulate. So please help me to simulate the CSRF attack. I have simulated by ...
2
votes
1answer
459 views

Simulate mouse clicks at a certain position on inactive window in Java?

Sorry for the long title. Couldn't think of any way to shorten it. Anyways, I'm building a bot to run in the background. This bot requires me to click. Of course, I want to be able to do other things ...
2
votes
2answers
727 views

javascript simulate mouse click on specific position

I need to now how to fire a mouse click event on a button automatically. I have this but doesn't work :( window.setInterval(function() { simulateClick(); }, 2000); function simulateClick() { ...
2
votes
3answers
526 views

simulate mouse cursor move in c# between two coordinates

I am trying to move mouse programatically between two coordinates. But I want to maintain the speed reliably on all fast or slow processing machines. I saw this link here. But it doesn't gurantee me ...
2
votes
3answers
449 views

Simulate includeInLayout=false in pure Actionscript code

If you know Flex, you probably know what the property "includeInLayout" does. If not, this property make the parent of your component disregard the bounds (like width and height) of your component in ...
2
votes
4answers
561 views

How to get the handle of 3rd party application's button using c#?

I am trying to generate an click event in a third party application. As a start I tried to simulate a click in calculator. Here's the code" IntPtr hwnd = IntPtr.Zero; IntPtr hwndChild = IntPtr.Zero; ...
2
votes
3answers
403 views

Sending a Mouse Click to a Specific Position without Moving the Mouse

I'm looking to send a mouse click to a specific position on a screen without affecting the mouse cursor's location. I've scoured and have tried everything under the sun with mouse_event (which is ...
2
votes
2answers
1k views

simulate backspace key with java.awt.Robot

There seems to be an issue simulating the backspace key with java.awt.Robot. This thread seems to confirm this but it does not propose a solution. This works: Robot rob = new Robot(); ...
2
votes
2answers
498 views

How do you simulate typing using jQuery?

Like how the click() can be used to trigger a click event on an element, is there any way to simulate the typing of a string?
2
votes
2answers
1k views

Simulating Key Press event using Python for Linux

I am writing a script to automate running a particular model. When the model fails, it waits for a user input (Enter key). I can detect when the model has failed, but I am not able to use python (on ...
2
votes
4answers
4k views

Simulate button click c#

Hey, I am trying to make a simulation of a button click for a password form, basically the form1 loads and shows form2 as a dialogue, and if it does not give back DialogResult.OK, then it closes the ...
2
votes
2answers
3k views

Keypress To Simulate A Button Click in C#

Ok, so I'm in the process of making a Tic-Tac-Toe game to help me learn C#. I'm attempting to add a bit of functionality to it, so I want people to be able to use the NumPad on a computer to simulate ...
2
votes
2answers
3k views

Flex: Simulate key press

I'm creating a virtual keyboard for a touchscreen Flex app and i'm trying to simulate a key press by dispatching a KeyboardEvent. I've written a handler function to listen for the event and act ...
1
vote
1answer
148 views

Android simulate key press

How can I programmatically simulate a key press on a Droid? I would like to mimic a manual key press (appearing on the droid that someone is pressing a key but it is being done programmatically). ...
1
vote
1answer
64 views

simulate click on a specific place in page

I have a little problem with simulating a click with javascript. I'm aware of the .click() method but the click must be on a prezi loaded (flash) so don't really have a html element to use. What I ...
1
vote
0answers
155 views

vimperator:plugins:firefox:javascript::Get the element at mouse position and simulate a click

Vimperator V2.4 Pre Firefox V3.6.18 Vista Home Basic I would like to get the element at mouse position and simulate a click on it in vimperator plugins. There are some functions that could ...
1
vote
4answers
558 views

Android: How to simulate back button

Currently my activity allows users to fill up certain data. Including spinner etc. When user click next system navigates to another screen. When I press back button on the phone previous activity ...
1
vote
2answers
250 views

How to simulate PC's Esc key on android

I'm writing an app that can play flash on android, but I can't simulate ESC key, since a lot of flash games need ESC key to return to the main menu, without this key the app I made will be useless. So ...
1
vote
3answers
880 views

Simulate keyboard keypress with Jquery

Is it possible to simulate a keypress when I click a div? Something like: $("mydiv").click(function(){ Presskey->F5 }); Actually the key I'm trying to simulate is F11, so people could press the ...
1
vote
1answer
101 views

How to simulate streaming radio listeners?

How to simulate streaming radio listeners? I have an online radio setup streaming at port 5672 and at url like domain.com:5672/radio.mp3 I want to test the website/server/ram/bandwidth/load etc for ...
1
vote
1answer
143 views

How can I simulate a “locked” file (one which has a write lock)

I am trying to debug a problem where users occasionally have locked files which they try to open. The code appears to have correct exception handling but users are still reporting seeing error ...
1
vote
1answer
63 views

Simulating a Bus Journey in a MapActivity

I am fairly new to Android and am looking for some help. I have a simple MapActivity and a vector of Stops(lat,long) with an ItemizedOverlay placed on each stop. I know the distance between each ...
1
vote
0answers
126 views

NSEvent doesn't work

Can somebody tell me what's wrong with the following code. I want to simulate an "a". NSEvent* keyEvent = [NSEvent keyEventWithType:NSKeyDown location:NSZeroPoint modifierFlags:NSCommandKeyMask ...
1
vote
1answer
32 views

Simulating interfaces when unsupported by a language

Is there a way to form pseudo interfaces when these aren't directly supported by an OOP language?
1
vote
3answers
341 views

How to test what will happen when you publish an update to your app to the Market

I'm about to publish a new version of an app to the Market. In order to avoid any potential problems once its been pushed to the Market and people get notified of an update, I'd like to simulate that ...
1
vote
1answer
295 views

Simulate double click for asp.net button in javascript

I have a asp.net button called update. I have to carry some test when the button is double clicked. But as of now, sometime it recognizes the double click and sometimes it doesnt. So i need to ...
1
vote
1answer
364 views

C# Simulate VolumeMute press

I got the following code to simulate volumemute keypress: [DllImport("coredll.dll", SetLastError = true)] static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo); ...
1
vote
1answer
622 views

Simulating keypresses in Visual C++

Ok so I might be totally barking up the wrong tree here as I'm not that up to date on Windows programming but here goes. I'm trying to initiate a simulated keypress in a C++ project in Visual Studio ...
1
vote
1answer
2k views

How to simulate multimedia key press (in C)?

Modern keyboards have special multimedia keys, e.g. 'Pause/Play' or 'Open Web Browser'. Is it possible to write a program that "presses" these keys? I would prefer solution in C, but I would accept a ...
1
vote
4answers
896 views

Simulate low speed connection on local network

Sometimes I want to manually test my web applications (either desktop applications calling web services or websites or RIA) to see how they behave with low speed internet connection (56 kbps for ...
1
vote
1answer
679 views

Can the sendinput API simulate a keyboard key being held down during some time?

My app will need to simulate a key being held down during some time. I don't know how many time. Can I use the sendinput API for this?
1
vote
3answers
432 views

Is there a way to simulate Windows input with C++?

I'm wondering if its possible to make a program in C++ that can "press" keys, or make the computer think certain keys have been pressed, and do things like make a program that "plays" games, or ...

1 2