-1

We have a terminal application which serves webcontent via iFrames to our clients.

For some reason, it has been decided that we want to automate the test for this server side. I need to visit a page, fill out a form, and submit it - without actually rendering it in a GUI, I believe a headless selenium driver can do this - but I am new to selenium, does anyone have an example of how to do this in java with selenium?

Boni García
  • 4,618
  • 5
  • 28
  • 44
MickeyThreeSheds
  • 986
  • 4
  • 23
  • 42
  • SO is for specific coding questions. You are asking for references that you could/should look up yourself or someone to write the code for you. Do some googling, write some code, and if it doesn't do what you want, come back and ask the question with your specific problem. – JeffC Mar 13 '17 at 19:04
  • Found the ruby developer. – MickeyThreeSheds Mar 14 '17 at 13:56

1 Answers1

2

You can use PhantomJS. Here you can find a working example.

Boni García
  • 4,618
  • 5
  • 28
  • 44
  • This is exactly what I was looking for - Was having trouble googling what I wanted because I knew I needed some other tool - thanks! – MickeyThreeSheds Mar 14 '17 at 13:56