VuGen web-HTTP/HTML load test script debugger stop working - load-testing

when I was replaying my Web app-HTTP/HTML Load testing script, blocked by
"UttStandaloneDebugger has stopped working"
what should I do...
enter image description here

Related

RHEL 8 reboot hangs on rd.break

I’m trying to follow https://linuxconfig.org/redhat-8-recover-root-password to reset a root password on a RHEL8 box.
I successfully select ‘e’ on image ‘4.18.0-240.1.1.el8_3.x86_64’ and arrive at the ‘edit’ screen.
I see a ‘linux’ line, but content ends after “crashkernel=auto”. The “resume=” and other stuff from the tutorial is missing.
I added “ rd.break” right after “crashkernel=auto”, but after Ctrl-X, it hangs indefinitely (I waited up to 30 minutes). I never get the switch_root prompt shown by the tutorial.
Any ideas why it would not get to that prompt?

How to open and close the application and still logged every test case? (RobotFramework/AppiumLibrary)

I'm trying to setup a Robot Framework automation with AppiumLibrary. I want to close the application and open it again every test case, but without logging in again. Actually, when I close the application, the app resets and ask me to log again. I just put the "noReset=true" capability on Open Application, but this don't solve my problem. Someone know how to do that?
***Settings***
Library AppiumLibrary
***Keywords***
Start Session
Set Appium Timeout 10
Open Application http://localhost:4723/wd/hub
... automationName=UiAutomator2
... platformName=Android
... deviceName=emulator-5554
... appPackage=br.com.app.app
... appActivity=.MainActivity
... autoGrantPermissions=true
... noReset=true
Sleep 5
Start app
Wait Until Page Contains Hello
Close Session
Capture Page Screenshot
Close Application noReset=true
Close Application
Capture Page Screenshot
Quit Application
Launch Application
Open Application http://localhost:4723/wd/hub
... automationName=UiAutomator2
... platformName=Android
... deviceName=emulator-5554
... appPackage=br.com.app.app
... appActivity=.MainActivity
... autoGrantPermissions=true
... noReset=true
***Test Cases***
See the first screen
[Setup] Start Session
Start app
Log in
Check the first screen
[Teardown] Close Application
See the second screen
[Setup] Launch Application
Check the first screen
[Teardown] Close Session
Try to use both fullReset=false and noReset=true in capabilities. This can solve your problem.

iOS 13 Shortcuts URL "Cannot connect to server"

I am trying to make an automation shortcut on my iPhone, when reading a NFC tag it should execute an URL. When I create the shortcut and press the 'Run' button to test it, it executes normally.
However, when I exit the app, and read the NCF tag then Shortcuts gives me an error "Cannot connect to Server". I tried using an ip number for the server, local domain name (.local), but none of it works.
Anyone an idea why it works fine if you test, but not when you actually trigger the shortcut?
Seems to be caused by in-secure http access.. for some reason a http call works when you try the shortcut, but when you trigger it, it fails. Using https solved the issue.

iOS: How to run web service without open application after installed in iPhone

How to run web service without open application
I need to run an service without open the app.
Once app closed from background also it must be run service.
Its an security app like anti theft functionality.
Can anybody help to run service without open app ?
As far as I know you can not, from a browser, check if an app is installed or not.
But you can try redirecting the phone to the app, and if nothing happens redirect the phone to a specified page, like this:
setTimeout(function (){
window.location = "https://itunes.apple.com/appdir";
}, 25);
window.location = "appname://";
If the second line of code gives a result then the first row is never executed.
Hope this helps!
You can check the "Implementing long-running background tasks" section from Apple document.
or
You can use by local notification to do that. But this not check every time. You set the time to where you will check a particular event.
Here is the tutorial for creating Local Notification step by step.

UI Automation onAlert method not getting called for alerts

I'm writing a UI Automation test script and I have noticed that the onAlert function that is supposed to be called by the test script automatically every time there is a alert presented to the user is not getting called.
To test this I have a simple UIALogger.logMessage() call just logging a message that the onAlert method was entered.
Any ideas on why this is happening?
I found out that if execution of the test script reaches the end and an alert pops up, the onAlert handling function is no longer triggered even though the test session is still running and logging diagnostics.

Resources