Software Engineering

This is the source code of the webpage ( https://eu.luxpowertek.com/WManage/web/login ) I am trying to login in and click the submit button.
<div id=”loginFormContainer” style=”margin: 0 auto; width: 450px; position: relative;”>
<form id=”loginHolder” action=”/WManage/web/login” method=”post”>
<h2 class=”title” style=”text-align: center; margin-top: 0;”>
Monitor Center
</h2>
<div class=”form-horizontal” style=”padding: 10px 10px 0 10px;”>

<div class=”form-group”>
<div class=”input-group col-sm-12″>
<span class=”input-group-addon” style=”width: 45px;”><img src=”https://resource.solarcloudsystem.com/WManage/web/img/format/icons/user.png?v=2.0.4.4″ height=”16″ /></span>
<input type=”text” class=”form-control input-lg” id=”account” name=”account” value=”” maxLength=”30″ autofocus autocomplete=”off” placeholder=”Please enter username”>
</div>
</div>
<div class=”form-group” style=”margin-bottom: 10px;”>
<div class=”input-group col-sm-12″>
<span class=”input-group-addon” style=”width: 45px;”><img src=”https://resource.solarcloudsystem.com/WManage/web/img/format/icons/key.png?v=2.0.4.4″ height=”16″ /></span>
<input type=”password” class=”form-control input-lg” id=”password” name=”password” maxLength=”50″ placeholder=”Please enter password”>
</div>

</div>

<div style=”width: 100%; margin-bottom: 10px;”>
<a href=”forgetPassword” style=”float: right; color: inherit;” target=”_blank”>Forget password?</a>
<div style=”clear: both;”></div>
</div>

<div class=”form-group”>
<button type=”submit” class=”btn btn-lg btn-success” style=”width: calc(100% – 115px); margin-right: 5px;”>Sign in</button>
<a class=”btn btn-lg btn-default” style=”width: 106px;” href=”/WManage/web/register”>Register</a>
</div>

<div class=”form-group” style=”margin-bottom: 5px;”>

<a href=”/WManage/web/login/viewDemoPlant?customCompany=” type=”button” class=”btn btn-lg btn-success” style=”width: calc(100% – 115px); margin-right: 5px;”>Visit demo station</a>

<a class=”btn btn-lg btn-default” style=”width: 106px;” href=”/WManage/web/warranty/register”>Warranty</a>
</div>
</div>
</form>
</div>

Here is my python code with all the various different ways I have tried so far to click the button. The username and password are just dummy code in this sample.
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.service import Service
service = Service(‘/usr/bin/chromedriver’)

driver = webdriver.Chrome(service=service)
driver.get(‘https://eu.luxpowertek.com/WManage/web/login’)

username = “uyuytuyreue745@mygmail.com”
password = “kinghferyrt”

# find username/email field and send the username itself to the input field
driver.find_element(“id”, “account”).send_keys(username)
# find password input field and insert password as well
driver.find_element(“id”, “password”).send_keys(password)
# click login button
driver.find_element(By.XPATH(“(//button[contains(text(),’Sign In’)])[2]”));

So the actual submit button has no ID and this is where I think I am getting confues will all the different ways of selecting it like by Selector, By XPATH by.xxxxx etc
Sign in
Any help would be most appreciated, also it appears that the code syntax of selenium has changed over the years as many code samples I have found do not work any more like driver.find_element_by_xpath which is now (I believe) driver.find_element(By.XPATH,xxxx)

Retail analytics in eCommerce leverages AI and ML to transform business operations, enhancing decision-making and competitive edge. The blog discusses how it enables retailers to analyze consumer behavior, optimize inventory, and craft targeted marketing strategies. With capabilities to predict trends and manage inventory efficiently, retail analytics proves crucial in meeting consumer demands and driving business success. Essential for modern eCommerce platforms, it uses detailed data from multiple sources to offer insights that help personalize customer interactions and improve overall business performance.
The post Importance of Retail Analytics in the eCommerce Industry first appeared on TestingXperts.

How to click on a link that is under a table element, but that is not visible on first page. There are pagination links “previous” & “next” on the page, and i want to iterate over multiple pages and find my link “a” tag based on Link text.
if link matches the string, then only click on the link, otherwise keep clicking “Next” in the pagination.
List<WebElement> links = driver.findElements(By.tagName(“a”));
int size = links.size();

for (int i = 0; i < size; i++) {
if (links.get(i).getText().equalsIgnoreCase(LinkMatchValue)) {
driver.findElement(By.xpath(“//a[contains(text(),'” + LinkMatchValue+ “‘)]”)).click();

} else {
driver.findElement(By.linkText(“next”)).click();

}

}

==================================================================================
<table id=”table1″>
<thead>
<tr>
</td>
</tr><tr class=”classA”>
<td><a href=…”>Link 1</a></td>
</tr>
<td><a href=…”>Link 1</a></td></tr><tr class=”even”>
<td><a href=…”>Link 2</a></td></tr><tr class=”even”>
<td><a href=…”>Link 3</a></td></tr><tr class=”even”>
<td><a href=…”>Link 4</a></td></tr><tr class=”even”>
<td><a href=…”>Link 5</a></td></tr><tr class=”even”>
<td><a href=…”>Link 6</a></td></tr><tr class=”even”>
</tbody>
</table>

In my application, there is a drop down to select “Estimation Date”:

Please find below my test case. It is failing at the line where I am trying to select “Since”:

public class dropdown_issue {

GenericFunctions gf= new GenericFunctions();

@Test(enabled = true)

public void dropdown () throws InterruptedException{
System.setProperty(“webdriver.gecko.driver”,”D:\Selenium\BrowserDrivers\geckodriver.exe”);
WebDriver dr=new FirefoxDriver();
dr.get(“http://10.127.129.79:8080/abc”);

Thread.sleep(3000);
dr.findElement(By.id(“username”)).sendKeys(“user”);
dr.findElement(By.id(“password”)).sendKeys(“user”);
dr.findElement(By.xpath(“//button[@type=’submit’]”)).click();
WebElement est_date_dd= dr.findElement(By.xpath(“//div[@class=’clearfix’]//select[@name=’est-date’]”));
Select est_date= new Select(est_date_dd);
est_date.selectByValue(“Since”);
Thread.sleep(3000);
dr.quit();
}
}

Code isn’t able to read Properties file. It returns validation error message in response;

The method click() is undefined for the type Object

Properties obj = new Properties();
FileInputStream objfile = new FileInputStream(System.getProperty(“user.dir”)+”\application.properties”);
obj.load(objfile);

// Navigate to link Mobile Testing and Back

driver.findElement(By.xpath(obj.getProperty(“MobileTesting”))).click();
driver.navigate().back();

// Enter Data into Form

driver.findElement(By.id(obj.getProperty(“EmailTextBox”))).sendKeys(“test@gmail.com”);
driver.findElement(By.id(obj.getProperty(“SignUpButton”))).click();

I need to validate few status of the android device. Can any one let me know how to extract the information from adb dumpsys and validate the responses using Java. Your help is much appreciated.

Ex: ‘adb shell dumpsys battery’ this code when android device is connected to windows gets executed and will fetch the response. can someone help me how to extract the information from response and validate the same.

How do I detect text inside of this, this is HTML & this is XPath. I tried

HTML
<span class=”messageText”>Hello.</span>
XPath
//*[@id=”liveAgentChatLogText”]/span[22]/span[2]

I tried with this but it didn’t work, it said no such element found.

driver.find_element(By.XPATH, ‘//*[@id=”liveAgentChatLogText”]//*[contains(string(.), “Hello”)]’)

I have two loop controllers inside a simple controller.
But it stops running after the execution of first loop even if the results is successful.

Structure is given below

ThreadGroup

Simple Controller 1

HTTP Request
Loop Controller1 (Loops 10 times with a CSV file)
Loop Controller2 (Loops 25 times with another CSV file)

Simple Controller 2

HTTP Request 1
HTTP Request 2
HTTP Request 3
Loop Controller 3 (Loops 15 times 3rd CSV file)

But execution stops after completing Loop controller 2. It doesn’t go for the Loop controller 2 or doesn’t start Simple Controller 2. If Simple Controller 1 is disabled, it will run Simple Controller 2 successfully.

Any suggestion will be of great help.
Thanks

I’m working on a project with www.NJMLS.com. I’m trying to extract email of agent name “Edward An”:
import dryscrape as d
d.start_xvfb()
br = d.Session()
br.visit(‘http://www.njmls.com/members/index.cfm?action=dsp.results&city=&county=&nametype=firstname&name=Edward&x=70&y=33’)
#open url and try to extract the email of Edward An

How to get email of “Edward An”? If I try:
for x in br.xpath(“//*[@class = ‘realtor-info’]/*”)
# selecting all elements in <div class=”realtor-info”>….</div>
if “Edward An” in x:
print x[‘herf’]
#Not responding

I am not getting any response.
What’s wrong with my script?
if “Edward An” in x.text()
print x

This is also not working. Still there is no error and no response.

<svg aria-label=”Unlike” class=”_8-yf5 ” color=”#ed4956″ fill=”#ed4956″ height=”24″ role=”img” viewBox=”0 0 48 48″ width=”24″><path d=”M34.6 3.1c-4.5 0-7.9 1.8-10.6 5.6-2.7-3.7-6.1-5.5-10.6-5.5C6 3.1 0 9.6 0 17.6c0 7.3 5.4 12 10.6 16.5.6.5 1.3 1.1 1.9 1.7l2.3 2c4.4 3.9 6.6 5.9 7.6 6.5.5.3 1.1.5 1.6.5s1.1-.2 1.6-.5c1-.6 2.8-2.2 7.8-6.8l2-1.8c.7-.6 1.3-1.2 2-1.7C42.7 29.6 48 25 48 17.6c0-8-6-14.5-13.4-14.5z”></path></svg>

I’m needing to grab area-label=”Unlike” but can’t figure out how. I’ve tried the following:
browser.find_element_by_xpath(“//svg[@class=’_8-yf5 ”][@aria-label=’Unlike’]”)

I’m using Python 3.11.5, and I want to extract text from a Webelement with selenium.
I use Chromedriver as a driver, and I want to find an element By.CLASS_NAME
Here is my code

What happens ?

When I print (element), it gives me a Webdriver element, which I can’t read.

When I print (element.text), it gives me an error :

Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘NewConnectionError(‘<urllib3.connection.HTTPConnection object at 0x000001DDFE4F0690>: Failed to establish a new connection: [WinError 10061] Aucune connexion n’a pu être établie car l’ordinateur cible l’a expressément refusée’)’: /session/0109eeaf781d2f899ee82e0fd10eac19/execute/sync
What have I tried ?

After using driver.get(url), I already tried to apply time.sleep(10)

I checked my versions of Chrome + Chromedriver

I disabled my proxy

Do you have any idea about what the problem is ?

I have just completed my first two playwright tests, but I am not sure how to optimize them.
The scenario is the following:

I log in to the system with an administrative user.
I create a new user and save the generated username and password using the following code:

// copy username and password
const username = await page.locator(‘#username0’).innerText();
const password = await page.locator(‘#passwd0’).innerText();
expect(username).not.toBeNull();
expect(username).not.toBeUndefined();
expect(password).not.toBeNull();
expect(password).not.toBeUndefined();

I log out the admin user.
I log in the created user (using the const created above), accept the terms and conditions and answer 220 questions, saving a screenshot of every 20th question.

for (let x = 1; x <= 220; x++) {
if (x % 20 === 0) {
await storeScreenshot(popupPage, testInfo, ‘test Q’ + x);
}
await popupPage.waitForLoadState();
await popupPage.locator(user.selector).click();
if (x % 20 === 0) {
await storeScreenshot(popupPage, testInfo, ‘test Q’ + x + ‘ – selected’);
}
await popupPage.locator(‘#submitknap’).click();
}

I am very happy that this works, and it is even parameterized with a csv for testing different answer patterns.
If any step in this fails, the whole case fails.
Ideally the admin part is not necessary as a part of the test and is reusable, but creating a user IS something I want to have. I could create some static users and wipe them before running each test, but I like the dynamic approach of creating a user prior to logging it in. I also have some environments that are not easily reset.
I am in doubt as to how I can split this test scenario up. Should I have the admin part as a helper function called by the testcase, or as a smaller testcase prior to calling the main testcase?
Edit
For a little perspective this test takes 3 minutes to complete. a complete run of 6 parameters in three browsers takes 16 minutes.

Hyperautomation in P&C insurance is transforming the industry by integrating AI, ML, and RPA to streamline operations and enhance customer service. The blog discusses how by automating processes and decision-making, insurers can significantly reduce errors, improve processing times, and meet evolving customer expectations. This approach not only boosts operational efficiency but also ensures compliance with regulatory standards, making it essential for insurers to stay competitive in today’s challenging market.
The post Why is Hyperautomation for the P&C Insurance Industry Important? first appeared on TestingXperts.

AI has taken over many global industries, including software testing. Today, software testers can leverage this innovative technology to boost their workflow and efficiency. If you are interested in software testing or are looking for a career in this field, then you might be interested in the contemporary uses of AI, especially in connection to…
The post Understanding the Integration of AI in Software Testing appeared first on Software Testing Material.

I’m currently building a testing framework for functional tests. I can run them in parallel using Cucumber but I have run into a problem in creating users for each thread (each test requires a brand new user).

I have a user.properties file with details for each new user created. Duplication doesn’t matter for most fields and my emails are different each time because I use something like this “useremail” + System.currentTimeMillis + “@example.com”.

My problem arises when reusing phone numbers. It needs to be a valid phone number and cannot be duplicated across accounts. I tear down users with the phone number at the beginning of each test. But running over multiple threads causes clashes of numbers.

I have 2 stored numbers in my user.properties which I hope to cycle through using a synchronized method for each thread and lock that number to that thread. But I aim to have more than 2 threads (as many phones that I can attach to be honest).

Every solution I come up with feels hacky and I’m quite new to this. Does anyone know of a good solution to distribute a finite number of user properties across multiple threads so they don’t clash?

Thought of using the actual device or emulator’s number (not sure if appium can extract that), but even if I could, my numbers need to be UK numbers

Thanks for your help.

I am developing a Selenium Test Automation Framework for the purpose of testing multiple websites.

I have currently set up the Framework in Visual Studio using C# and implementing the Page Object Model.

The Framework itself is a C# project and the Test project is separate but references the Framework.

I am happy with the fundamentals of the Framework but I want to implement some Data Driven aspects in order to increase the durability of the tests. I currently have NUnit running paramaterised test using [TestCase] but the data is hardcoded by me.

The ideal scenario would be to add a DatabaseHelper class to the Framework which would allow me to define queries on the database under test to return values and Nunit would repeat the same test for each row of the SQL query.

Has anyone here implemented a similar method and how would you go about creating it?

I have a result file of Concurrency Thread Group test of 500 users.
The file has aproximetly 58K rows and 16Mb

1) I tried generating a report through “Tool > Generate html report” but get time-out exception, I have increased the timer to 480000 but the result was the same.

2) I tried generate report through cmd -> it was running for a few hours and again no result, no report, all logs files have no exceptions.

Is there limitation of a report’s rows?
please help!

So I am trying to write a test in which the first step is logging in, but it is denying me access as it detected automation tools because the javascript has not been enabled and there is no profile. So I am trying to load my default profile. The problem I’m getting is that the browser does open, but it quickly fails as I get a SessionNotCreatedException. The failure occurs in the service hooks:
@Before(“@FrontendTest”)
public void setup() {

System.setProperty(“webdriver.chrome.driver”,
“E:\interview_notcodegod\src\drivers\chromedriver.exe” );

ChromeOptions options = new ChromeOptions();

options.addArguments(“–enable-javascript”);

options.addArguments(“–user-data-dir=C:/Users/[username]/AppData/Local/Google/Chrome/User Data”);

WebDriverManager.chromedriver().setup();
driver = new ChromeDriver(options); // intellij points here (nullpointerexception)
driver.manage().window().maximize();
}

Is there a line of code that i’m missing? I’ve updated my chromedriver already because I thought that was the issue (chrome Version 99.0.4844.74 (Official Build) (64-bit), chromedriver:99.0.4844.51)