this is the website: http://money.finance.sina.com.cn/bond/quotes/sh175694.html
And I tried:
driver.find_element_by_xpath('//div[@class="title tit06"]/a').click()
OR
driver.find_element_by_xpath('(//a[@class="more more_links"])[1]').click()
Neither is working and returns: no such element: Unable to locate element:
Any help will be appreciated!
Thanks!
Here's more :
url = 'http://biz.finance.sina.com.cn/suggest/lookup_n.php?country=&q=%09175708'
driver.get(url)
driver.implicitly_wait(10)
driver.find_element_by_xpath('(//div[@class="list"])[2]/label/a').click()
driver.implicitly_wait(10)
driver.find_element_by_xpath('//div[@class="title tit06"]/a').click()