I downloaded and tried the entire version of the chrome key in my centos 6.6 version to run selenium.
I followed this up:
http://selftechy.com/2011/08/17/running-selenium-tests-with-chromedriver-on-linux
I get an error as shown below:
./chromedriver: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by ./chromedriver)
I am trying to run this test python script:
driver = webdriver.Chrome('/home/intel/Downloads/chromedriver')
driver.get('http://www.google.com/xhtml')
time.sleep(5)
search_box = driver.find_element_by_name('q')
search_box.send_keys('ChromeDriver')
search_box.submit()
time.sleep(5)
driver.quit()
source
share