I have started selenium server using below command and I wanted to use custom firefox profile. But some how it creates a new firefoxprofile in /tmp/ directory for each test case I run.
/usr/bin/java -jar /usr/local/groundwork/selenium/java/selenium-server-standalone-2.33.0.jar -firefoxProfileTemplate /root/.mozilla/firefox/lfmvce8i.selenium/ &
When I check firefox process using below command I can see that temporary profile has been created in /tmp directory.
root 35660 4.6 12.9 810852 131352 pts/0 Sl 10:10 0:10 /usr/lib64/firefox/firefox -profile /tmp/customProfileDirf4461dd4c0fd4b388a595f159568fd4b root 35934 0.0 0.0 103244 840 pts/0 S+ 10:14 0:00 grep firefox
Can someone please help me to use custom firefox profile with selenium.