--
You received this message because you are subscribed to the Google Groups "Saunter" group.
To unsubscribe from this group and stop receiving emails from it, send an email to saunter+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
from selenium import webdriver
driver = webdriver.Remote("http://localhost:4444/wd/hub", webdriver.DesiredCapabilities.FIREFOX)
driver.get('http://www.google.com')
driver.find_element_by_id('gbqfq').send_keys('thiru')
driver.quit()
This script executes when the server is started as standalone, but does not work when server is started as a hub
java -jar selenium-server-standalone-2.33.0.jar -host <IP address> -port 5555 -role node -hub http://<IP address of hub>:4444/grid/register -browser browserName=firefox,platform=MAC