1,217 questions
1
vote
1
answer
66
views
TimeoutExeption in Headless mode
I’m working on a Python project using Selenium and pytest. All tests pass locally in normal (non-headless) mode, but when I run them in GitHub Actions or even locally in headless mode, many of them ...
2
votes
0
answers
160
views
How to authenticate requests with django allauth (headless)
I am always getting a 401 response after login to django-allauth on session (and other endpoints). See example code:
def login(email, password):
response = requests.post(
f'{baseurl}/api/...
0
votes
1
answer
72
views
PAC validation erros when using libreoffice command line tools to export html as PDF/UA
I'm trying to export from HTML to PDF/UA using libreoffice command line tools with this command:
soffice --headless --convert-to 'pdf:writer_pdf_Export: {"SelectPdfVersion":{"type":...
1
vote
0
answers
82
views
How can I call a function from a Linux headless server (build in Unity) using PuTTY? [duplicate]
A Server script is written in C# and looks like this:
public class Server : MonoBehaviour
{
void Start() { //start methods }
void Update() { //update methods }
public void MyFunction() { //some ...
0
votes
3
answers
230
views
Browser is not maximizing in the headless mode
I'm facing a problem while running the automation suite using Java + Selenium in headless mode. The scripts are failing because the browser is not maximizing as expected.
My current Chrome version is ...
1
vote
1
answer
157
views
Opening site only possible in non-headless mode?
i try to run the below code in headless-mode.
In non headless-mode everything works fine.
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver....
0
votes
0
answers
14
views
Can we load webview and inject js in react-native when app is in kill mode
I'm developing a React Native app that uses react-native-webview to display web content. My requirement is:
Load a WebView and inject JavaScript to interact with the page (e.g., click a button).
...
0
votes
0
answers
36
views
Serenity headless cannot open url
Hi I am working on serenity and tried the headless run, but when I use the headless I am receiving error No element found and upon checking it turns out that it won't open the URL, but when I removed ...
2
votes
1
answer
58
views
Sitecore Graph Ql Rich Text Editor Serialization
I would like to know how can I customize the RTE serialization while the requested page gets resolved ?
I have RTE type as one of my data source and wanted to inject some custom logic when this gets ...
0
votes
0
answers
45
views
Running aitviewer on remote server headless mode
I'm running aitviewer on a remote linux server with no GUI, in headless mode and in the documentation it's recommended to use
export DISPLAY=:0.0
Xvfb :0 -screen 0 640x480x24 &
but I cannot ...
0
votes
0
answers
33
views
Chromedriver executeCustomCommand get base64 encoded from PDF output using pagedjs rendered HTML
I'm using pagedjs to render my invoice sample (using table, tr, td, th, etc...)
I use chromedriver v 135.0.7049.84 to open a headless browser and having export pdf from my html using polyfill pagedjs ...
0
votes
0
answers
96
views
selenium don't run on proxmox container
I need some help because I'm trying to run selenium in headless mode on my proxmox server but it's not working.
Here are the specifics:
i set up a proxmox container with ubuntu-24.10-standard_24.10-...
0
votes
0
answers
80
views
Why aren't application logs (e.g., fmt.Println, logrus) shown when debugging with Delve in headless mode?
I'm running a Go application using urfave/cli, where start is a subcommand.
I'm using Delve (dlv) in headless mode to enable remote debugging from IDE like VS Code or IntelliJ IDEA. Here's the command ...
0
votes
1
answer
219
views
Strapi project update issue Strapi 4 to Strapi 5
After update Strapi 4 to Strapi 5
And try to command npm run develop showing this following errors:
⠧ Loading Strapi(node:97298) Warning: [deprecated] In future versions, Strapi will stop reading ...
0
votes
1
answer
71
views
Persistent Cart with Woocommerce backend?
Nextjs Frontend, WooCommerce headless backend.
Trying to have a persistent cart with a signed in user, and just having a lot of difficulty in that. I've tried to create a custom plugin that adds a ...