Questions tagged [loadui]

LoadUI is a open source API load testing solution that is free and cross-platform. It supports all the standard protocols - from REST, SOAP/WSDL, AMF, JDBC, POX to HTTP(S) and HTML. In a single test environment, LoadUI provides complete test coverage, including Web Load Testing, Automated Testing, Stress Testing, and more.

LoadUI is a open source API load testing solution that is free and cross-platform.

With a visual, drag-and-drop interface, it allows you to create, configure and redistribute your Load Tests interactively and in real-time.

It supports all the standard protocols - from REST, SOAP/WSDL, AMF, JDBC, POX to HTTP(S) and HTML.

In a single test environment, LoadUI provides complete test coverage, including Web Load Testing, Automated Testing, Stress Testing, and more.

Home page: http://www.loadui.org/

29 questions
22
votes
2 answers

How can I set x-www-form-urlencoded in SoapUI?

I cannot see the media type x-www-form-urlencoded in SoapUI pro 5.0.0. How can I set this for a post method?
user1000622
  • 519
  • 1
  • 7
  • 18
3
votes
1 answer

SoapUI Groovy Script that sets test case property not reflected in LoadUI

I am using LoadUI 2.6.8 and SoapUI 5.0. I have been able to do Property Transfers into Test Case properties that are successfully passed between SoapUI Runners in LoadUI as described here:…
Laura
  • 69
  • 4
3
votes
2 answers

Load UI Vs Visual Studio 2010 for WCF Load testing

We want to do load testing for our wcf services and we are considering LOAD UI from www.soapui.org and Load testing support in Visual Studio 2010 Ultimate. I want to know what you guys think of them, if any of you any experiences and think one is…
RRR
  • 575
  • 1
  • 11
  • 25
2
votes
1 answer

PyQt4: How to load compiled ui-files correctly?

I created a Qt resource file with all my ui files inside of it, I compiled that with pyrcc4 command-line in a python file, and then I loaded the ui files using loadUi. Here an example: #!/usr/bin/env python #-*- coding:utf-8 -*- import os import…
Sophus
  • 379
  • 6
  • 21
2
votes
1 answer

How do I log the request and response in soapUI?

I am calling a REST based service from SoapUI. I have created a load test for the service and the test works. I wrote the following code in my setup script for the load test. log.info("This is from the setup script") def request =…
abhi
  • 3,082
  • 6
  • 47
  • 73
2
votes
2 answers

Unable to import Loader modules with Python

I am a beginner with python and started using Eclipse very recently. I am using Qt-designer and created a file named MyWidget.ui, but while running the program I receive an error: from PyQt4.uic.Loader.loader import DynamicUILoader ImportError:…
2
votes
0 answers

Python uic.loadUi doesnt recongise button group

I have previously use the following steps to load PyQt ui into python. 1.Use designer to create the ui file 2.Go to dos and use pyuic4 to convert the ui files into python(MyQtUI.py) 3.Import in the python files from MyQtUI import…
Reinhart
  • 31
  • 3
1
vote
3 answers

PyQ5t: load Qt Designer into Python script (loadUiType): how to check error cause?

I design GUI in Qt Designer, then I load UI-file in my Puthon3 script with the loadUiType method: class Main(QMainWindow, uic.loadUiType("adc_main_form.ui")[0]): def __init__(self): super(Main, self).__init__() self.setupUi(self) All works…
drvlas
  • 423
  • 3
  • 7
  • 18
1
vote
2 answers

Tools/techniques to Load/Soak test a deployed Java EE application?

I'm quite new to performance testing and am looking to be pointed in the right direction. I have a Java project which contains two parts, deployed seperately: A service-broker, published as a webservice; which has service and db wrappers. A front…
Paul
  • 3,318
  • 8
  • 36
  • 60
1
vote
0 answers

How to run multiple test cases at the same time in LoadUI?

I have created a testsuite in SoapUI and a testsuite contains two testcases. I need to execute a testsuite at the same time from loadUI. Either command line or from loadUI. Thanks
Karunagara Pandi
  • 634
  • 7
  • 16
  • 27
0
votes
1 answer

custom components in loadUI

How can I add custom components into loadUI please? I want to download the HTTP Runner component. In the zip file, there is a .png and groovy script file. Thanks in advance
michelle
  • 2,759
  • 4
  • 31
  • 46
0
votes
0 answers

How to load resource by PyQt5 uic loadUi?

I am trying to load ui by PyQt5.uic.loadUi. The ui window can load and show correctly, but the resouce(image, icon) of the ui window can not be loaded, so the window can not display the image (background). My folder structure is as…
oFo
  • 21
  • 3
0
votes
0 answers

PyCharm loadUi findChild - unresolved attribute reference

I use PyCharm and imported an Qt Designer ".ui" with PyQt6: from PyQt6 import QtWidgets, uic class Ui(QtWidgets.QMainWindow): def __init__(self): super(Ui, self).__init__() uic.loadUi('C:/Users/M/PycharmProjects/2021-12-15_book…
Joe
  • 15
  • 6
0
votes
1 answer

I see a blank GUI when I run code from PyCharm

I designed a GUI using QtDesigner and when I run it using Ctrl+R I see a result like I expected. When I import this GUI using ui.loadUi() in PyCharm and run the code, from PyQt5.QtWidgets import * from PyQt5.uic import loadUi class…
Mustafa
  • 117
  • 1
  • 9
0
votes
1 answer

Creating a setup step in LoadUI

I have a REST request to create a new user. I also have a request to retrieve the user's ID number. I want to load test retrieving the ID number multiple times in LoadUI. The problem is that I only need to create the user once but LoadUI loops back…
MSkiLLz
  • 121
  • 2
  • 2
  • 12
1
2