在线二区人妖系列_国产亚洲欧美日韩在线一区_国产一级婬片视频免费看_精品少妇一区二区三区在线

鍍金池/ 問答/數(shù)據(jù)分析&挖掘  Python  Linux/ selenium 模擬搜i索 企查查 總是定位不到 標(biāo)簽沒問題

selenium 模擬搜i索 企查查 總是定位不到 標(biāo)簽沒問題

class qichacha:
     def __init__(self):
         option = webdriver.ChromeOptions()
         option.add_argument('--start-maximized')  # 最大化
         option.add_argument('--headless')  # 無界面
         self.driver = webdriver.Chrome(chrome_options=option)
         self.serarch_engine_url="https://www.qichacha.com/"
         self.csv_file = os.getcwd() +"/"+'data.csv'
     def search_index(self):

         self.driver.get("https://www.qichacha.com/")
         response = self.driver.page_source.encode('utf-8')
         print(response)
         self.driver.find_element_by_id("searchkey").send_keys("百度")

         self.driver.find_element_by_id("V3_Search_bt").click()

         response=self.driver.page_source.encode('utf-8')
         
       
         

clipboard.png

回答
編輯回答
久舊酒

你要定位的標(biāo)簽應(yīng)該是通過js通過異步來生成的,所以沒法定位,等一段時間試試

2017年4月22日 12:12