All Questions
Tagged with browser-automation javascript
155 questions
0
votes
1
answer
71
views
How to Freeze a Flourish Studio Bar Chart Race Every 0.01s for High-Quality PDF Capture?
I created the following Flourish Studio bar chart race as an example for this topic:
https://flo.uri.sh/visualisation/19321054/embed
Now, I want to capture a sequence of PDF prints from this bar chart ...
0
votes
1
answer
89
views
How can we automate data fetching for Core Web Vitals?
I have been asked to maintain a daily report where I keep a track of the number of good, poor and average urls every alernative day. The way that this works is usually that today, we would get the ...
-1
votes
1
answer
238
views
Issue Configuring Chrome Options with Selenium WebDriver in JavaScript
I'm facing an issue when trying to open a specific site using Selenium WebDriver in JavaScript with the Chrome browser. The code below creates the browser driver, but it doesn't open the site when I ...
0
votes
0
answers
35
views
Puppeteer Automation: Interacting with dynamically updated elements on a page
I am creating automation for someone to pay bills of multiple people using this automation (url : text
First two steps works fine
on third step, where it needs to enter into form, it is not able to do ...
2
votes
1
answer
4k
views
Playwright is not generating videos when we create our own context
Videos are not generated in a playwright-report HTML report. Is there a workaround?
Below is the playwright.config.ts file:
import { defineConfig, devices } from '@playwright/test';
export default ...
0
votes
0
answers
46
views
eBay Autofill using native JS
I’m trying to input some information to eBay using the dev console and I thought it would be super simple with something like this:
document.querySelector(“.exampleInput).value = “exampleText”
But as ...
0
votes
0
answers
28
views
When using cypress automation the Website gets log out before last it block
I am using Cypress to automate this website https://admin.britex.pw/
The issue occurs when during automation after a few It blocks, on click of a link (anchor) tag, the website gets logged out. I ...
3
votes
0
answers
303
views
How to pin the chrome extension automatically using puppeteer
I am trying to automate the process of pinning a Chrome extension using Puppeteer. I want to be able to programmatically pin an extension without any manual intervention. I believe Puppeteer, a ...
6
votes
5
answers
12k
views
Puppeteer - "Requesting main frame too early!"
I've created a function using Puppeteer that checks if the user is logged in. Basically at first it checks if browser, page are open and then looks for selector and depending if item was found returns ...
1
vote
1
answer
2k
views
Playwright configuration to imitate my original browser actions
I'm trying to write a simple bot using Playwright for a browser game. Game has one repetitive action (button clicking) which I would like to avoid. My idea is to be able to play the game on my ...
0
votes
1
answer
2k
views
How to Test Scroll Behavior When Scrollbar Doesn't Exist with Playwright?
I'm currently working on automated tests with the page object using Playwright, and I have a function scrollDownAndUpOnboarding that's designed to scroll down and then up on a web page. However, I've ...
0
votes
2
answers
207
views
button not clickable with puppeteer
I am trying to automate a login process into one of my accounts and this website has some weird password table that I have to click on to type my password , but when I select a button from the table ...
1
vote
1
answer
839
views
Javascript dom manipulation textarea value doesn't work
when typing into textarea with keyboard and clicking button with js working np.
When changing textarea value with javascript. Does not work.
And textarea has eventListener name invalid. When i see ...
0
votes
1
answer
801
views
How to launch specific chrome profile for Web automation using webdriverIO?
How to launch specific chrome profile for Web automation using webdriverIO?
Requirement: My website is launched with the "Login with Google Option", so I want to launch it through Automation ...
2
votes
0
answers
601
views
How to Terminate a Node.js Script with Puppeteer without Closing the Browse
I am using Puppeteer with Node.js to automate web scraping tasks. I have set the headless option to false so that I can see the browser window during the script's execution. However, I need to ...