So using grid 2, is there a configuration file to start up xvfb or xvnc each time selenium RC begins. Hub and Selenium RC is already installed on separate linux boxes.
In addition, is there a way to implement bidirectional communicate between the selenium test running on RC and the client (Java client software)? For ex) test fails because element cannot be found on a page, client needs to be notified and client can provide the correct element.
so the selenium web driver test should not stop, instead wait until the correct input or client terminates the test. sort of like a feedback cycle in order to make sure that all variations on an web application is accounted for. ex) a form button with randomly generated ID, relying on xpath which breaks randomly on certain pages.
Is it possible to achieve continuous integration through specifying regular time intervals in which the selenium grid 2 will boot up the rc?
Does this mean, I need to extend the webdriver test as also a Jetty server? or Netty? Start a selenium webservice instead?