Selenium切换窗口句柄及调用Chrome浏览器

一. 调用Chrome浏览器


        首先,假设通过Firefox()浏览器定向爬取首页导航栏信息,审查元素代码如下图所示,在div class="menu"路径的ul、li、a下,同时可以定位ul class="clearfix"。

# coding=utf-8    
import os     
from selenium import webdriver  
  
#PhantomJS无界面浏览器  
##driver = webdriver.PhantomJS(executable_path="G:\phantomjs-1.9.1-windows\phantomjs.exe")    
  
#打开火狐浏览器  
driver = webdriver.Firefox()  
url = "http://www.csdn.net/"  

你可能感兴趣的:(selenium,selenium,chrome,测试工具)