Whether you’ve launched a redesign of your website or rolled out a new feature in your app, that is the…
Development
Google has developed a new framework called Project Naptime that it says enables a large language model (LLM) to carry…
Cybersecurity researchers have detailed a now-patch security flaw affecting the Ollama open-source artificial intelligence (AI) infrastructure platform that could be…
Cyble Research & Intelligence Labs (CRIL) last week analyzed 154 vulnerabilities in its weekly vulnerability report, including critical flaws in…
Lindex Group, an international retail giant specializing in high-quality fashion, has reportedly fallen victim to a data breach. According to…
A ransomware attack on Indonesia’s national data center has disrupted official government services. The attack has reportedly affected more than…
Last week’s ransomware attack on software as a service (SaaS) provider CDK Global has had a ripple effect on its…
A recently discovered vulnerability (CVE-2024-27812) in the Apple Vision Pro headset allowed hackers to bypass device security mechanisms and flood…
This is a guest post co-written with Hemant Singh and Mohit Bansal from PayU. PayU is one of India’s leading…
As industries go, the insurance industry is particularly document-driven. Insurance professionals, including claim adjusters and underwriters, spend considerable time handling…
Retrieving data from a WordPress site can be a nightmare. Site data could reside in several places. Pulling from these…
AI has been around in our technological world for quite some time now, yet, with the recent development specifically in…
In artificial intelligence, achieving superior performance at a lower cost remains a key objective. OpenPipe has made significant strides in…
Integrating artificial intelligence (AI) is revolutionizing how professionals interact with and utilize AI-generated content in digital workspaces. As businesses and…
This post is co-written with Jhanvi Shriram and Ketaki Shriram from Krikey. Krikey AI is revolutionizing the world of 3D…
Impact of ChatGPT on Human Skills: The rapid emergence of ChatGPT, a highly advanced conversational AI model developed by OpenAI,…
This post is a continuation of Creating Natural Conversations with Amazon Lex QnAIntent and Amazon Bedrock Knowledge Base. In summary,…
Getting below error while saving test cases after recording. Can someone help me to understand and how to correct this?
On executing set of behave tests on linux server manually the behave tests are getting stuck at some random behave test and rest other behaves are not executed. There is no particular bdd which is giving issue. It causes the server to hang. How should i troubleshoot it.
I am trying to run 2 different tests on 2 different emulators parallelly. But my execution halts on 1 device as soon as the test on other device is complete.
I am using the below driver setup code
capabilities = new DesiredCapabilities();
capabilities.setCapability(“platformName”, “Android”);
capabilities.setCapability(“VERSION”, platformVersion);
capabilities.setCapability(“udid”, deviceName);
capabilities.setCapability(“app”, “app.apk”);
capabilities.setCapability(“appPackage”, “xxx”);
capabilities.setCapability(“appActivitiy”, “xxx.HomeActivity”);
capabilities.setCapability(“systemPort”, systemPort);
driver = new AndroidDriver(new URL(“http://0.0.0.0:4723/wd/hub”), capabilities);
And below is my testNG.xml file
<?xml version=”1.0″ encoding=”UTF-8″?>
<suite name=”Parallel Tests” parallel=”tests” thread-count=”2″>
<test name=”Android native app test on Android 12″>
<parameter name=”platformVersion” value=”12″/>
<parameter name=”deviceName” value=”emulator-5554″/>
<parameter name=”systemPort” value=”6666″/>
<classes>
<class name=”LoginTest” />
</classes>
</test>
<test name=”Android native app test on Android 10″>
<parameter name=”platformVersion” value=”10″/>
<parameter name=”deviceName” value=”emulator-5556″/>
<parameter name=”systemPort” value=”8666″/>
<classes>
<class name=”SignUpTest” />
</classes>
</test>
</suite>
I get the following exception
org.openqa.selenium.NoSuchSessionException: Session ID is null. Using WebDriver after calling quit()?
And sometimes this exception as well
org.openqa.selenium.NoSuchSessionException: A session is either terminated or not started