由web.find_element_by_xpath('//[@id="s_position_list"]/div[1]/div[1]/a/h3').click()
改为
button=web.find_element_by_xpath('//[@id="s_position_list"]/div[1]/div[1]/a/h3')
web.execute_script("$(arguments[0]).click()",button)
由web.find_element_by_xpath('//[@id="s_position_list"]/div[1]/div[1]/a/h3').click()
改为
button=web.find_element_by_xpath('//[@id="s_position_list"]/div[1]/div[1]/a/h3')
web.execute_script("$(arguments[0]).click()",button)