I  have some selenium test cases in python(like test_Add_User_ID-1003.py or 
more simple like simpletest.py) and i want to do them in Jenkins...please 
explain with details that how can i add project and have successful test 
with diagrams and if you know tutorial or example test because I'm working 
on it for three days and i couldn't have do even a right job!!...THANK YOU

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
#!/usr/bin/python
from selenium import webdriver
from selenium.webdriver.common.keys import Keys

driver = webdriver.Firefox()
driver.get("http://www.google.com";)
elem = driver.find_element_by_name("q")
elem.send_keys("selenium")
elem.send_keys(Keys.RETURN)
driver.close()

Reply via email to