资源简介


资源截图

代码片段和文件信息

#coding:utf-8  
from selenium import webdriver  
from selenium.webdriver.support.ui import WebDriverWait   # WebDriverWait的作用是等待某个条件的满足之后再往后运行  
import time  
import sys  
#driver = webdriver.PhantomJS(executable_path=r‘D:\Projects\PythonProjects\PythonApplication1\PythonApplication1\phantomjs-2.1.1-windows\bin\phantomjs.exe‘)  # 构造网页驱动  

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

chrome_options = Options()
chrome_options.add_argument(‘--headless‘)
chrome_options.add_argument(‘--disable-gpu‘)
driver = webdriver.Chrome(chrome_options=chrome_options)  


driver.get(‘http://www.yingxiaobu.com/forum.php‘)       # 打开网页  
driver.find_element_by_xpath(‘//*[@id=“ls_username“]‘).send_keys(‘您的账号‘)  
driver.find_element_by_xpath(‘//*[@id=“

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       77684  2018-06-09 09:23  screen_shoot.jpg
     文件        2033  2018-06-09 09:28  PythonApplication1.py

评论

共有 条评论