I have a setup as follows:
Machine 1 - Ubuntu - selenium hub
Machine 2 - Ubuntu - selenium node
Machine 3 - Windows 8.1 - selenium node
To execute tests i am using RemoteWebDriver and configured Jenkins CI on hub.
Issue: URL i am testing has a button that copies data to clipboard on clicking it. The data is not visible to end user unless pasted. My concern is when running locally, i am able to get system clipboard data using:
strScript = (String) Toolkit.getDefaultToolkit().getSystemClipboard()
.getData(DataFlavor.stringFlavor);
But when triggering code from jenkins on remote machines I am unable to fetch the contents and receiving below error:
java.awt.HeadlessException:
No X11 DISPLAY variable was set, but this program performed an operation which requires it.
Its clear that it is trying to fetch data on jenkins server, but certain display issue. But my requirement is to get the data that got stored on the remote machine after clicking the button.
Any solutions?
Thanks.
If the Selenium Grid environment is in your control and you have the luxury of setting up the Nodes, then here's how you go about building this.
The below sample should explain all of this in action (I am using selenium 3.141.59)
Dependencies being used
Custom servlet looks like below
Here lets assume that our servlet belongs to the jar named "servlets.jar". Here's how you start off the node
The hub is started using the command
Here's a sample that is going to use all of this.