摘要:
import unittest from selenium import webdriver from bs4 import BeautifulSoup as bs class douyu(unittest.TestCase): #初始化方法 def setUp(self): self.option = webdriver.ChromeOptions() ... 阅读全文
摘要:
import json import jsonpath import requests url="https://www.lagou.com/lbs/getAllCitySearchLabels.json" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHT... 阅读全文
摘要:
from bs4 import BeautifulSoup import requests import time def captcha(captcha_data): with open("captcha.jpg",'wb') as f: f.write(captcha_data) text=input("请输入验证码") def zhihuLogin... 阅读全文
摘要:
分享几个比较好的站点 IBM developerWorks 中国 : IBM developerWorks : 技术主题 ITエキスパートのための問題解決メディア Qiita - プログラマの技術情報共有サービス InfoQ: Software Development News, Videos & 阅读全文
摘要:
更多关于python selenium的文章,请关注我的专栏:Python Selenium自动化测试详解 总有人看不明白,以防万一,先在开头大写加粗说明一下: frameset不用切,frame需层层切! 很多人在用selenium定位页面元素的时候会遇到定位不到的问题,明明元素就在那儿,用fir 阅读全文
摘要:
How do you make Selenium 2.0 wait for the page to load? You can also check pageloaded using following code IWait wait = new OpenQA.Selenium.Support.UI.WebDriverWait(driver, TimeSpan.FromSeconds(30.... 阅读全文
摘要:
//get image width and height var image=driver.FindElement(By.ClassName("it-Header_authorImage")); var width = image.Size.Width; var height... 阅读全文
摘要:
Selenium実行中にJavaScriptのコードを実行する JavaScriptで画面の値を取得/設定するコードをメモ。 WebDriverEx.cs // JavaScriptを実行(戻り値なし) public static void ExecuteJavaScript(this IWebDr 阅读全文
摘要:
I use Selenium with Phantomjs, and want to get the page content after the page fully loaded. I tried http://docs.seleniumhq.org/docs/04_webdriver_adva 阅读全文
该文被密码保护。 阅读全文