It is possible to run selenium recording from webDriver
or rc?
I have a desktop app, where i have button -> after click on it i want to open browser (FF) with recording from selenium -> user will do some actions on this browser -> and later i want capture recorded actions and convert them to my xml structure.
It is even possible?
Sorry if it is confusing, i hope you understand it correctly.
Or maybe there is a way to run selenium ide from webdriver (eventually java - i used for this command line exec:
String command1 = "\"C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe\"";
String command = "\"C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe\" -chrome \"chrome://selenium-ide/content/\"";
Process child1 = Runtime.getRuntime().exec(command1);
Process child = Runtime.getRuntime().exec(command);