I'm writing simple Selenium automated tests for our intranet apps using PHP binding. I'm testing those scenarios on my workstation and if they are okay, I am uploading them to Linux server, so others can start them remotely and test the apps once again.
Recently I got a lot of reports that those tests doesn't pass. When I look the logs I see something like:
PHP Fatal error: Call to a member function click() on a non-object in /path_to_script.php
When I try the script once again on my workstation - they pass.
My workstation, as well other workstations, are Windows XPs. On both stations I use Firefox latest version(18.0) and selenium 2.28. Here is the output of java -version
java version "1.7.0_11"
Java(TM) SE Runtime Environment (build 1.7.0_11-b21)
Java HotSpot(TM) Client VM (build 23.6-b04, mixed mode)
And here is the xpath I'm using:
//select[@id='ctl00_PlaceHolderHome_ucBusinessEntry_CategoryMainAddID_ddlChild1']/option[@value='342']
There must be some difference between those machines, but I don't know where to look. Selenium, Firefox and java are same versions on both machines.
Thanks in advance for any ideas how to debug this!