741 questions
0
votes
1
answer
37
views
How to do a previous/next function? [closed]
I've been working on this personal website and I had this section where I blog post, but instead of having an never ending blocks of post that you would have to scroll down, i wanted to implement a ...
-4
votes
1
answer
60
views
Password Reset Links Logged -- multiple uses by different IP's [closed]
I'm testing a website for a small, fixed amount of users that will be required to login. I'm testing the password change functionality right now, and after a successful password change, the password ...
0
votes
2
answers
85
views
TypeError: Object of type RelativeBy is not JSON serializable using find_elements with Relative Locators
Why am I getting the error below when the method signature of find_elements() apparently does support RelativeBy? I bypassed this error by not using relativeBy.
Using selenium 4.33.0 and python 3.13.6
...
0
votes
1
answer
84
views
DevTools recorder - attribute title for a step or import array of recordings
The google-chrome-devtools offers a recorder feature. This records every action taken (click, change, ...) in the browser while the recorder is running. These actions can be exported as a json file. ...
0
votes
1
answer
92
views
What's the point of using remote browser grid vs local browsers in web app testing with Testplane?
I am using testplane framework (https://testplane.io/) for running automated tests of my web app. The actions I automated are pretty simple for now, e.g. open a page, click a few buttons, then assert ...
0
votes
0
answers
25
views
How to make a button go to a random page? - fixed so now to keep as solved idk what going [duplicate]
I'm trying to make a button that goes to a random page of the website. I have the code below.
Thanks.
<section class="Banner">
<div class="banner-content"></div>...
-1
votes
1
answer
59
views
Opencart 3.0.3.7 categories don't work on product page
Category links on the product page are not working. It works smoothly on the home page. I am adding screenshots of the homepage and product page. Also, I cannot zoom in on the images and I cannot show ...
0
votes
1
answer
94
views
Cypress does not log in by cy.setCookie() in AzureDevOps project
I am trying to run automation tests with cypress in a project set up by interns at the company I myself is now an intern at. The website uses OAuth 2.0 and AAD for the login process and there is ...
0
votes
2
answers
8k
views
How To Get Actual URL Of A Telegram Mini App
It's known knowledge that telegram mini apps are just simple sites being accessed via bots. So my question is, how do i get the actual url to the site displayed when a mini app is opened? The answer ...
-3
votes
1
answer
88
views
A website with a different web framework per webpage possible? [closed]
Basically, I wanna make a website wherein each pages is built on a different web framework and I wanna know if it is somewhat possible.
Example: Website's Home Page is made through the Ruby on Rails ...
2
votes
1
answer
83
views
How to better handle creation of required PageObjects when implementing LoadableComponents in Selenium?
I am learning Automation testing using Selenium, Cucumber, and Java and I have implemented the Page Object Model design pattern. In addition to that I have implemented the LoadableComponents pattern ...
0
votes
1
answer
95
views
How can i know the limit of Load my website can handle?
I want to know how much traffic my website can handle, how can i perform this test?
I have hosted the website on shared 10GB NVMe storage, shared ram and vCPU.
0
votes
0
answers
50
views
Testing DELETED Expected [204] but was [404]
I've been struggling trying to find out why my DELETED test method gets a 404 Https error, what i'm thinking is that the url provided to the test method is not being recogniced. I have used Postman to ...
-1
votes
1
answer
819
views
AttributeError: 'NoneType' object has no attribute 'find_element'
I am facing some issue in my test script. What am I doing wrong here? Before that just an overview beforehand, its website testing in python and selenium using pytest. My selenium is v4.18.1 and ...
0
votes
0
answers
37
views
card detail section doesn't reliably show on website checkout
I would be beyond words, extremely grateful is someone could please assist me (non- IT specialist).
On my online school booking page, the checkout inconsistently shows the option to insert card ...
1
vote
0
answers
337
views
How to find what causes error Blocked script execution in 'about:blank' (in desktop Safari)?
I have noticed that when visiting my website from Safari (on macOS), the last entry in the console log is Blocked script execution in 'about:blank' because the document's frame is sandboxed and the '...
0
votes
0
answers
54
views
I am not able to click on the specific date in the Makemytrip website, it is continously throwing exception
Sharing my error here:
Exception in thread "main" org.openqa.selenium.TimeoutException: Expected condition failed: waiting for presence of element located by: By.xpath: //div[@class='...
0
votes
1
answer
663
views
Webrtc Load Testing - Seeking Expert Advice
I've been tasked with conducting load testing for a webrtc service, specifically focusing on audio/video calls and conference capacity. The testing environment is a web version, and after analyzing ...
0
votes
2
answers
1k
views
Chrome driver of selenium in headless mode not finding any element
I try to make a simple selenium test in a remote server (Ubuntu 22.04) without display mode. The chrome browser version is 120.0.6099.129 and the chrome driver version is 120.0.6099.109. The result is ...
1
vote
1
answer
480
views
How to download a spreadsheet from Google Sheets as a CSV using selenium? In particular, how to click the final CSV suboption?
I am trying to download a google spreadsheet using selenium. The idea is to click the File menubar, then the Download submenu, and finally the Comma-seperated values (.csv) suboption.
I've configured ...
1
vote
1
answer
42
views
How to append text in textarea having existing text in it
This is my current code
WebElement textarea_click = driver.findElement(By.xpath("//*[@id=\"gvPods_txt_Comment_" + i + "\" ]"));
...
0
votes
1
answer
90
views
Binding columns with a table in SQLAlchemy
I have been trying to build up a webpage using Flask.I am currently on the login form:
from flask import Flask,render_template,request
from flask_sqlalchemy import SQLAlchemy
app = Flask(__name__)
...
0
votes
1
answer
256
views
Div not reaching edge of webpage in React
white space between green div and both top and sides of screen
My index page
export default function Home()
{
return(
<div className = {stylesMain.bodyDiv}>
<div>...
-1
votes
1
answer
61
views
Save integer to local storage html & javascript
I am trying to make a website that generates a random starcode from an array (https://en.help.roblox.com/hc/en-us/articles/360026181292-Roblox-Star-Code) and It is working. But I want to add a ...
0
votes
1
answer
132
views
Cypress Won't Open Button to Type Form [closed]
Chrome vs Cypress
Click focus
Using Cypress 13.3.0
So I've tried doing a .click( {force: true} ) and all that, even attempted using .trigger('click') on it, but it doesn't seem to open the form so the ...
0
votes
1
answer
118
views
Error "HTTP ERROR 500" while sign in to PHP website [duplicate]
I am a beginner in PHP and web development. I need to create a simple website with sign-in and sign-up functionality for testing purposes. I have installed a LAMP server on a CentOS 8 virtual machine ...
1
vote
1
answer
1k
views
cannot connect to chrome at 127.0.0.1:50385 .This version of ChromeDriver only supports Chrome version 114 Current browser version is 116.0.5845.141
I am trying to use Python undetected-chromedriver==3.0.6 for web automation and web scraper.
I want to search Google using python selenium. I want to enter Google using Python Selenium but my coding ...
1
vote
0
answers
45
views
Reporting the DOM on test case fail?
The elephant in the room
This is probably one of the most subjective questions I have posted on here...
It may even have an overwhelmingly obvious answer...
But I have run into a slew of test case ...
1
vote
1
answer
4k
views
Adding a Event to Google Calendar app using HTML
I'm having a problem with HTML code.
I'm trying to add a Invitation event to Calendar app using HTML by using anchor tag and href () so when I code it like following:
<a href="https://...
0
votes
0
answers
800
views
Getting 'object has no attribute' error although I did everything correctly
Now, I have tried learning unittest in python to test websites from the techwithtim series on selenium.
I am trying to test the python.org website.
I am trying to run a test using unittest in Python. ...
0
votes
0
answers
141
views
Why result of the inbuild chrome lighthouse and chrome plugin lighthouse differs variably in a big way?
i'm testing a page performance score for a client using both inbuild chrome lighthouse and chrome plugin lighthouse, the results differs in a big way.
For desktop, Chrome inbuild lighthouse shows high ...
-1
votes
1
answer
1k
views
Lighthouse (v10) performance scores changed to lower values
I'm optimizing my site (see: https://jekyll-one-org.github.io/) for better (Google) Lighthouse scores and found the performance scoring changed to lower values. For example:
LCP, should lower/equal 2....
0
votes
1
answer
188
views
Google Analytics GA4
The number of users who have registered on my website on GA4 is less than the one I got from the DB.
Anyone can help here?
Both google analytics and extracted data are in the UTC time and on GA4 Im ...
0
votes
1
answer
950
views
What is the correct way to use a headless chrome browser for running Rails system tests in Heroku pipeline
I have my pipeline setup such that a push to main on my GitHub repository triggers Heroku to pull the latest commit and build a system for test. The test setup succeeds but the system tests fail ...
0
votes
1
answer
152
views
ASCII 3D Text looks glitchy when used for a HTML Website
I am using ASCII 3D Text for my website and it looks quite glitchy, this problem does not occour on other websites.
Example 1:
As you can see, there are glitchy lines on my website
Example 2:
Another ...
0
votes
0
answers
20
views
XSS vulnerability demonstration code - Script not executing as expected [duplicate]
I am working on an educational project to demonstrate a stored XSS vulnerability using JavaScript. However, I'm encountering an issue where the injected script is not executing as expected. I have ...
0
votes
1
answer
90
views
Cannot get value from Textbox using Selenium WebDriver
I am unable to get the data from the textbox using Selenium WebDriver.
Here how the textbox element code looks like
<input aria-invalid="false" disabled="" id="2033323"...
0
votes
1
answer
99
views
How to make a circular border around image instead of ellipse when image dimensions have be Altered?
As the title says, I want to add a circular border around my images, I already know about
border-radius: 50%;
but since my image dimensions have changed, it makes an ellipse. How do I put a circular ...
0
votes
0
answers
34
views
.htaccess URL-redirect
I am having some issues with redirecting URL's on my website after migrating to new HOST.
I have set up two langauges. EN & SE.
I have not yet changed the DNS/Nameservers as I want to test the ...
0
votes
0
answers
285
views
Mouse hover chrome devtools element inspector - can you make the popup persistent?
I'm trying to use the Chrome Devetools element inspector for the purposes of accessibility audits. if i open the devtools menu and click the button that activates the mouse pointer inspector (same can ...
0
votes
0
answers
4k
views
Move To Element via Actions with Selenium
I'm trying to click on the element on the main page from site demoQA, but I'm facing issue that google ads block my click.
I've already tried to
moveToElement() from Actions class and with
driver....
0
votes
0
answers
153
views
How to test and deploy a web service on a local WLP using Eclipse
I need help testing and deploying a web service on a local WebSphere Liberty (WLP) using Eclipse.
I have the following installed:
Eclipse 2022-12
IBM Liberty Developer Tools 22.2
WebSphere Liberty ...
1
vote
1
answer
44
views
Misalignment of Preloader on iPhones
I have the following preloader:
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
* {
padding: 0;
...
2
votes
3
answers
1k
views
How to make Selenium wait until the elements on the page are replaced (java)
For a graduation project, I am testing an online store using Selenium Webdriver and Java. I'm stuck in this part of the testing , where I have to check whether all search results (products) contains ...
0
votes
1
answer
3k
views
Prevent Screen Scroll and Page Refresh on iOS Mobile Devices
How do you prevent the screen from scrolling or refreshing when you move your finger across the screen of an iOS device? When you swipe down, it causes the page to refresh and when you move your ...
1
vote
2
answers
214
views
I am unable to check whether the dropdown contains title "Job Titles"
I was testing this website using selenium in java
https://opensource-demo.orangehrmlive.com/
Im stuck in this part of the testing , where i have to check whether the dropdown contains title "Job ...
-3
votes
1
answer
713
views
Web footer Stays on bottom of page. Need it to appear on when scrolling down [closed]
My Web footer i made is supposed to show when you get to the bottom of the page, but stays on the bottom of the screen taking up half the screen.
My react website isn't working as intended. I have ...
0
votes
2
answers
382
views
How would you write this in a loop in Robot Framework
So I'm currently learning Robot Framework and instead of using repeating code, I'm trying to utilize loops to make my code easier to maintain. Unfortunately, I do not know how to solve this one where ...
1
vote
1
answer
54
views
Scripts not working in anchored HTML page
I have a homepage on a website I'm working on, for fun I thought I'd add a tic tac toe game that opens up as an anchor when it is clicked on the navbar.
My issue is, even when the tic tac toe works ...
0
votes
1
answer
281
views
How to randomize a gradient background and align text to the center of the screen regardless of platform?
Alright, this question will be a long one, so thank you in advance to anyone who sticks through it. Simply put, I'm trying to make a very simple website for a relative for christmas, but I've run into ...