Date picker not visible in Jenkins execution but working in local PyCharm

Expected behavior

Actual Result:
Calendar / date picker icon is missing or not visible
Element is not clickable in Jenkins execution
Test fails at date selection step
Expected Result:
Calendar icon should be visible and clickable in Jenkins execution same as local run

Actual behavior

I am automating a web application using Selenium with Python. The date picker (calendar icon) works correctly when running scripts from PyCharm on my local machine. However, when the same script is executed through Jenkins pipeline, the calendar icon is not visible and the date picker becomes non-interactable.

Steps to Reproduce:
Run the Selenium automation script in local PyCharm → calendar icon is visible and clickable
Push same code to Git repository
Execute the same script via Jenkins job
Observe UI behavior


Genekins Version::Version 2.541.3

Browser:: Chrome

options = Options()
options.add_argument(“–ignore-certificate-errors”)
options.add_argument(“–allow-insecure-localhost”)
options.add_argument(“–disable-notifications”)
options.add_argument(“–window-size=1920,2000”)

plugin install:xvfb, and other plugin aviable

This is my real UI.And above attached is getting from genekins

Is there any update?

We use regularly use Selenium to test Jenkins core as part of the acceptance test harness. Our Selenium tests run on Linux computers. I suspect that there is an issue in your Jenkins configuration or in the definition of your Selenium test that is causing the failure.