automate the loadui - scripting

I am using Windows OS. I went through the loadui website to understand the automation process. As I am very new with this software, I cant even understand how to run certain command. For example, there is command like this "loadUI-Agent-1_5_0.exe -c" need to be run in command line.
I try to paste it in command prompt, but it is not recognized. Anybody have any idea how to do that? It is very good if you guys can provide me link to learn from zero, where I can follow step by step to automate the load testing using loadui.
Thanks

You have to use loadui-cmd.bat, which can be found in the LoadUI installation directory.
You should also use the latest version of LoadUI which is 2.1.1.
Source: Getting Started with Automation from the LoadUI documentation.

Related

Command schedule with IntelliJ

I have the following command that I run with terminal in IntelliJ
testcafe chrome test.ts
Is there any way to make this command to be run at 11pm? I mean to schedule it.
I will be very thankful for you guys.
A short answer is yes.
A longer answer is you don't want to do this in your IDE, but use other tools like cron.
You don't mention what operating system you use, so it's difficult to be concrete here, on Unix and Linux system, you'll typically have cron installed and so you can use it for this task.
If you're using a Windows system, I recommend reading this SO question, you will likely find an answer there.

How to automate installation process of any windows software application

I want to automate the installation process of any windows .exe/application software.
For example: I have "npp.7.Installer.x64" .exe file and I want to install this .exe/application through any scripting or tool instead of manual process.
I had tried with "AutoIT" tool but I am unable to achieve the results.
Please suggest me a appropriate way. Thanks in advance.
I have write code in python command line with administration permission and write below lines:
app = Application().start(r"D:\npp.7.Installer.x64.exe")
Above code successfully pop the Installation window of notepad.

Using Libtorrent session with Twisted - Stuck on Checking resume data

I am trying to get libtorrent to work by starting a libtorrent session in Twisted.
I have created two scripts to demonstrate the problem. When these scripts are ran, libtorrent status is stuck on checking_resume_data for both scripts. When the contents of the main functions are executed without Twisted, that is, on the non-reactor, default main thread, these scripts work properly (and the libtorrent status of the torrent is set to downloading and seeding respectively). The behavior is the same under python versions 2.7 and 3.5.
This issue is confirmed by a Twisted developer.
I tried to attach the python debugger (python -m pdb seeder.py), but couldn't find anything abnormal.
Does anyone have any experience with this problem or know why it exists? Has someone found a solution?
Thanks in advance!

How to install Visual Paradigm on Netbeans?

I'm following the instructions here but it seems not to work. I'll contact the developer, but wonder if someone has been able to make it work somehow.
The installation process is completed, but Netbeans doesn't see the plug-in. I assume it is deployed incorrectly.
Not sure how it got fixed but suddenly upon starting the IDE an update for the plugin showed up and it started working afterwards.

How to run dart spark on my own computer?

I see there is a project named spark, which is a Chrome app based development environment.
It seems interesting, and I want to run it my own computer(mac os), expected to see a chrome-based IDE for dart. But I can't find any document to tell me how to run it. There are just some pages for how to develop and test, but how to run it?
I tried with the grind shell with all kinds of options, but no lucky :(
Thanks for the question! The Spark effort is still spinning up, and we're not yet ready for a public release. All the source code is available publicly, so it is possible for people to build it for themselves. Once we're further along we'll put a developer preview release up on the chrome web store.
The steps to build & run Spark IDE on Windows are:
Install Dart SDK to e.g. C:\dart-sdk
Download the Spark source code to e.g. C:\spark
Open cmd and type: cd C:\Spark
set PATH=%PATH%;C:\dart-sdk\bin
set DART_SDK=C:\dart-sdk
pub get
grind.cmd deploy
Load the upacked extension from C:\Spark\ide\build\deploy-out\web in Chrome Dev.
Alternatively, you can download Chrome Dev Editor packaged app, based on Spark 0.13,