Libraries & Frameworks

I have a strange behavior : I created Test Class with 2 Test Methods as below.
When I call AddLimitedBuyOrderwithRandom in the first method it works fine without any exception, but if I call AddLimitedBuyOrderwithRandom from the second method I get a NoSuchElement exception.
This is the code for the test class:
public class TestLoginPage extends TestBase {
public HomePage homeobject;
public NewOrdersLoginPage OrderLoginObject;
public OrderMgmtPage OrdersMgmentObject;

@Test
public void SuccessLogin() throws InterruptedException
{
homeobject = new HomePage(driver);
homeobject.OpenOrdersPage();
OrderLoginObject = new NewOrdersLoginPage(driver);
OrderLoginObject.userLogin(“140”, “12345”);
OrdersMgmentObject = new OrderMgmtPage(driver);
OrdersMgmentObject.AddLimitedBuyOrderwithRandom(“10”);
}

@Test(enabled= true)
public void AddLimitOrderTest() throws InterruptedException
{
OrdersMgmentObject = new OrderMgmtPage(driver);
OrdersMgmentObject.AddLimitedBuyOrderwithRandom(“10”);
}
}

and this is the code for AddLimitedBuyOrderwithRandom:
public void AddLimitedBuyOrderwithRandom(String SharesCount) throws InterruptedException
{
clickButton(NewOrderLink);
clickButton(BuyTypeRadio);
selectDropdownByValue( companyList, “Company”);
typeText(ShareNoTxt, SharesCount);
selectDropdownByValue( OrderTypeList, “2”);
selectDropdownByValue( OrderValidityList, “0”);
double Pricerandom = getRandomNumberInRange(ReturnShareLimitDown(),ReturnShareLimitUp());
typeText(SharePriceTxt,Double.toString(Pricerandom));
clickButton(SubmitOrderBtn);
}

(Added from comments on answers)
My base class is:
public class TestBase
{
public static WebDriver driver ;
public static String downloadPath = System.getProperty(“user.dir”) + “\Downloads”;
public String BaseURL = “URL”;

@BeforeSuite
@Parameters({“browser”})
public void startDriver(@Optional (“chrome”) String browserType)
{
if (browserType.equalsIgnoreCase(“chrome”) )
{
System.setProperty(“webdriver.chrome.driver”, System.getProperty(“user.dir”)+”/drivers/chromedriver.exe”);
driver = new ChromeDriver();
}
}

driver.manage().window().maximize();
driver.navigate().to(BaseURL);
}

Using Selenium + chromedriver on Linux, like so;

chrome_options = Options()
driver = webdriver.Chrome(‘/usr/bin/chromedriver’,options=chrome_options)
driver.get(‘https://www.somewebsite.com’)

Chrome will start and will receive immediate focus (most of the time, sometimes it does not).

One can easily click outside of the Chrome window and continue working elsewhere, it will not affect Selenium/Chromedriver at all.

However, if one was typing something then the text will now be entered in the just-focused browser window. When starting many windows in sequence, this is cumbersome (keep loosing focus).

How to avoid the just-started Chrome window from receiving focus in the first place?

(Coding language used is Python)

How do you ensure your passing tests(UI automated) actually pass?
As automation engineer I think we should question our passing tests in the same spirit as we dig in our failing tests to find out reasons to fail, at least periodically.
In long standing large automation suites, there are times where a passing test has not been questioned in long time as it was always ‘passing’ until a direct bug in that area surfaces.
Please share your approach used in actual large projects to test the tests? Preferably through automation.

(I am a bit of a StackOverflow newbie, so please forgive any beginner mistakes and let me know what to improve in the future)
I am trying to select the highlighted button in the appended picture.
Problem:

There are many buttons of this kind all using the same description and XPath. So as far as I can tell there is no way of telling them apart by their cssSelector or XPath

Possible solution:

The h2 above the button contains a differentiable description of the button I need to select. So can I basically navigate to said h2 and then select the specific button belonging to it?
-> How to code it?
Are there easier ways to do this?

So far I know basic element selection as seen in this code sample:
WebElement loginElement = driver.findElement(By.xpath(“//*[@id=’login-submitBtn’]”));
loginElement.click();

Test Guild – Automation Testing Tools Community
Strategic Test Environment Setup For Automation Success
Understanding the importance of test environment setup Test environment setup is crucial for successful test automation. It involves preparing a controlled environment where you can run your tests accurately. A well-structured test environment ensures that your automation tests are reliable and provide meaningful results. Here are a few reasons why test environment setup is essential:
You’re reading Strategic Test Environment Setup For Automation Success, originally posted on Test Guild – Automation Testing Tools Community – and copyrighted by Joe Colantonio

I am working on PhantomJS with Java for one of my project. I am looking for some help in working with PhantomJS in following scenario.
Scenario:
Step-1: Mouse hover on tab/link then 2 sub-links will display
Step-2: Click on 2nd sub-link (This element is not visible if width is less than 992)
Here in Step-2, I am failing due to page is not displaying the element. I have tried following ways to resolve:

Added wait statement before clicking (Explicit wait -> wait until element clickable)

Note: Script getting failed in this step due to element is not clickable.

Set the custom window size (1920 X 1080)

Note: Here my query is when I used driver.window.maximize(), I am getting window size as “1366 X 768”. So I am not sure whether it will work if I set the window size as “1920 X 1080”.

Please share your experiences or idea’s to resolve this issue. Your help/suggestions are very helpful to me

NOTE: I am facing this issue only PhanjomJS browser only in remaining all browsers are working fine

Floods are devastating, causing significant damage globally. Generative AI enhances flood insurance by improving predictive accuracy, risk assessment, and claims processing. It utilizes pre-trained models to evaluate diverse scenarios, offering more accurate risk insights and customer-centric policies. The blog discusses how AI-driven tools enable insurers to model risks efficiently, set fair premiums, and respond to real-time events. Explore how generative AI transforms flood insurance and how Tx can support its integration for superior risk management.
The post Enhancing Flood Insurance Models with Generative AI: A Deep Dive first appeared on TestingXperts.

Use ESM with importmap to manage modern JavaScript in Laravel without transpiling or bundling. Source: Read More 

Turbo Laravel gives you a set of conventions to make the most out of the Hotwire stack (inspired by turbo-rails…

I am using Robot Framework and Selenium and have a drop down combo element that I need to focus on and tab off in order to fire a validation message. I cannot use Press Keys or Click Element as it will invoke the list and I cannot use Mouse Over since the only argument is location. Does anyone have suggestions to handle this scenario?

I’m trying to learn to create a pipeline in Gitlab. All my tests fail because of the compilation issue. My code is included below along with the error message.
import loginPage from “../PageObjects/loginPage”;

fixture(‘Login Tests’)
.page(‘https://www.saucedemo.com/’);

test(‘User Login to the website’, async (t) => {
await loginPage.loginWebsite(‘performance_glitch_user’,’secret_sauce’);
});

import { Selector, t } from “testcafe”;

class loginPage{
userName: Selector;
password: Selector;
loginBtn: Selector;
pageName: Selector;

constructor(){
this.userName = Selector(‘#user-name’);
this.password = Selector(‘#password’);
this.loginBtn = Selector(‘#login-button’);
this.pageName = Selector(‘.title’);
}

async loginWebsite(username, password){
await t
.typeText(this.userName, username)
.typeText(this.password, password)
.click(this.loginBtn)
.expect(Selector(this.pageName).innerText).eql(‘Products’);
}
}

export default new loginPage;

package.json
{
“name”: “testcafeproj”,
“version”: “1.0.0”,
“description”: “Assignment”,
“main”: “index.js”,
“scripts”: {
“test”: “testcafe chrome tests/**/*”,
“test2”: “testcafe edge tests/**/*”,
“test:chrome:headless”: “testcafe chrome:headless tests/**/*”,
“test:chrome:reports”: “testcafe chrome tests/* –reporter html:reports/report.html”,
“test:chrome:reports:ss”: “testcafe chrome tests/*.ts -s takeOnFails=true –reporter html:reports/report.html”
},
“author”: “test”,
“license”: “ISC”,
“devDependencies”: {
“faker”: “^5.5.3”,
“faker-js”: “^1.0.0”,
“testcafe”: “^2.4.0”,
“typescript”: “^4.9.5”
},
“dependencies”: {
“@faker-js/faker”: “^7.6.0”,
“testcafe-reporter-html”: “^1.4.6”
}
}

.gitlab-ci.yml
stages:
– test

test_job:
image: cypress/browsers:node18.12.0-chrome107
stage: test
script:
– npm ci
– npm run test:chrome:headless

This is the error message in CI

Serverless architecture is changing business operations in 2024 by offering scalability and reducing IT overhead. This technology allows companies to focus on innovation without the burden of managing servers, facilitating rapid development and deployment. With serverless models like FaaS, BaaS, PaaS, and IaaS, businesses can handle increased demands effortlessly. This blog explores the transformative potential of serverless architecture, including its top use cases and benefits. It addresses security with comprehensive testing and compliance strategies, ensuring robust protection for your serverless applications.
The post Ways Serverless Architecture is Transforming Businesses first appeared on TestingXperts.

Continuing on from BDD Feature Files guidelines
Say I have 10 feature files testing user actions 1-10, 1-Fund transferring, 2-Display balance, 3-etc
feature files:
In ‘Fund transferring’, login, navigate to fund transfers, transfer test.
In ‘Display balance’, login, navigate to balanes, verify balances.
etc
What is the best way to structure these to have login as a pre-req so as not to need logging in each time?
In ‘login’, login successfully. If passed:

In ‘Fund transferring’, navigate to fund transfers, transfer test.

In ‘Display balance’, navigate to balanes, verify balances.

etc