当前位置: 首页 > news >正文

竞价推广托管seo网站关键词优化

竞价推广托管,seo网站关键词优化,php网站建设实训报告,烟台门户网站建设python自动化Selenium的使用 Selenium是一个自动化测试框架,用于模拟和控制浏览器操作,支持多种编程语言。它可以模拟人类用户在浏览器上的操作(如点击、滚动、输入等),并检查网页内容和元素的属性。Selenium可用于对…

python自动化Selenium的使用

Selenium是一个自动化测试框架,用于模拟和控制浏览器操作,支持多种编程语言。它可以模拟人类用户在浏览器上的操作(如点击、滚动、输入等),并检查网页内容和元素的属性。Selenium可用于对网站进行功能测试、性能测试、兼容性测试等。Selenium包含三个主要组件:

  1. Selenium IDE: Selenium IDE是一个基于浏览器的插件,用于录制和回放用户操作,可以生成自动化脚本,适用于初学者。

  2. Selenium WebDriver: Selenium WebDriver是一个可以直接控制浏览器的工具,提供了多种编程语言的接口,可以在不同的浏览器上进行测试。

  3. Selenium Grid: Selenium Grid是一个分布式测试工具,可以将测试用例分发到不同的计算机上进行测试,提高测试效率。

Selenium的主要优点包括:跨平台、多浏览器支持、灵活性高、可扩展性好、开放源代码等。

selenium的安装和使用

  1. 下载google驱动包

    从淘宝镜像下载合适的驱动包,解压驱动包到合适的位置。找不到驱动可以从官方获取驱动。

  2. 使用pip安装selenium

    pip install selenium

  3. 示例baidu_selenium.py

import time
from selenium import webdriver# 创建浏览器对象
browser = webdriver.Chrome('chromedriver.exe')
# 访问百度网站,如京东默认会校验是否真实浏览器访问
url = 'https://www.baidu.com/'
browser.get(url)
time.sleep(2)# 获取文本框对象,在文本框中输入刘晓雪
input = browser.find_element_by_id('kw')
input.send_keys('刘晓雪')
time.sleep(2)
# 获取百度一下的按钮后点击
button = browser.find_element_by_id('su')
button.click()
time.sleep(2)
# 滑到底部
js_bottom = 'document.documentElement.scrollTop=100000'
browser.execute_script(js_bottom)
time.sleep(2)
# 获取下一页按钮
next = browser.find_element_by_xpath('//a[@class="n"]')
next.click()
time.sleep(2)
# 回到上一页
browser.back()
time.sleep(2)
# 回去
browser.forward()
time.sleep(3)
# 退出
browser.quit()
# content = browser.page_source
# input = browser.find_element_by_id('id')
# input.get_attribute('class') 获取属性
# browser.find_element_by_class_name('className')
# browser.find_element_by_name('input')
  1. 示例no_page_selenium.py
# PhantomJS已不推荐使用
# browser = webdriver.PhantomJS('path')
# url = 'https://www.baidu.com'
# browser.get(url)
# browser.save_screenshot('baidu.png')
# time.sleep(2)
# browser.quit()# 无界面的浏览器,不进行css和gui的渲染、运行效率高,Phantomjs和Chrome handless
from selenium import webdriver
from selenium.webdriver.chrome.options import Options# 配置选项
def share_browser():chrome_options = Options()chrome_options.add_argument('--headless')chrome_options.add_argument('--disable-gpu')# chrome浏览器的路径path = r'C:\Program Files\Google\Chrome\Application\chrome.exe'chrome_options.binary_location = pathbrowser = webdriver.Chrome(chrome_options=chrome_options)return browserbrowser = share_browser()
# 设置浏览器最大化显示
browser.maximize_window()
url = 'https://www.baidu.com'
browser.get(url)
browser.save_screenshot('baidu.png')

文章转载自:
http://dinncozambezi.tqpr.cn
http://dinncoboddhisattva.tqpr.cn
http://dinncompeg.tqpr.cn
http://dinncoaxillar.tqpr.cn
http://dinncomarl.tqpr.cn
http://dinncoautarky.tqpr.cn
http://dinncoearthrise.tqpr.cn
http://dinncogenevese.tqpr.cn
http://dinncoagraffe.tqpr.cn
http://dinncoseverity.tqpr.cn
http://dinncounjealous.tqpr.cn
http://dinncoeolithic.tqpr.cn
http://dinncofactionist.tqpr.cn
http://dinncocilantro.tqpr.cn
http://dinncorefoot.tqpr.cn
http://dinncoepyllion.tqpr.cn
http://dinncoceramide.tqpr.cn
http://dinncoyvonne.tqpr.cn
http://dinncostylistic.tqpr.cn
http://dinncojackson.tqpr.cn
http://dinncopierogi.tqpr.cn
http://dinncobombshell.tqpr.cn
http://dinncogavelock.tqpr.cn
http://dinncoristocetin.tqpr.cn
http://dinncorife.tqpr.cn
http://dinncocomplexionless.tqpr.cn
http://dinncopolyphyleticism.tqpr.cn
http://dinncoqualm.tqpr.cn
http://dinncohpgc.tqpr.cn
http://dinncocresset.tqpr.cn
http://dinncohyperthymia.tqpr.cn
http://dinncobackward.tqpr.cn
http://dinncochoriambic.tqpr.cn
http://dinncocalaboose.tqpr.cn
http://dinncotatbeb.tqpr.cn
http://dinncoerogenous.tqpr.cn
http://dinncoindicate.tqpr.cn
http://dinncomucksweat.tqpr.cn
http://dinncotheatromania.tqpr.cn
http://dinncoentame.tqpr.cn
http://dinncowapperjaw.tqpr.cn
http://dinncodependably.tqpr.cn
http://dinncogadgetry.tqpr.cn
http://dinncoabrazo.tqpr.cn
http://dinncoresurge.tqpr.cn
http://dinncoconnexity.tqpr.cn
http://dinncodisquisitive.tqpr.cn
http://dinncodolichocranial.tqpr.cn
http://dinncoeducable.tqpr.cn
http://dinncoanimalist.tqpr.cn
http://dinncoechovirus.tqpr.cn
http://dinncononmiscible.tqpr.cn
http://dinncofirmamental.tqpr.cn
http://dinncopish.tqpr.cn
http://dinncounevoked.tqpr.cn
http://dinncobrummagem.tqpr.cn
http://dinncoclayton.tqpr.cn
http://dinncotarantella.tqpr.cn
http://dinncosubconscious.tqpr.cn
http://dinncoperennity.tqpr.cn
http://dinncogrebe.tqpr.cn
http://dinncoassibilation.tqpr.cn
http://dinncomortgager.tqpr.cn
http://dinncoexpire.tqpr.cn
http://dinncosubthreshold.tqpr.cn
http://dinncofaitaccompli.tqpr.cn
http://dinncoaslef.tqpr.cn
http://dinncopassional.tqpr.cn
http://dinncobaronage.tqpr.cn
http://dinncoschematism.tqpr.cn
http://dinncoleptospire.tqpr.cn
http://dinncoprizegiving.tqpr.cn
http://dinncotautog.tqpr.cn
http://dinncodenaturalize.tqpr.cn
http://dinncoresultingly.tqpr.cn
http://dinncoredissolve.tqpr.cn
http://dinncoindianist.tqpr.cn
http://dinnconomogram.tqpr.cn
http://dinncothessalonians.tqpr.cn
http://dinncohydroscopic.tqpr.cn
http://dinncoexcerption.tqpr.cn
http://dinncoquadruped.tqpr.cn
http://dinncosinecurist.tqpr.cn
http://dinncodraft.tqpr.cn
http://dinncoparamorphism.tqpr.cn
http://dinncophrasemonger.tqpr.cn
http://dinncocongratters.tqpr.cn
http://dinncojackpot.tqpr.cn
http://dinncoseniority.tqpr.cn
http://dinncoackemma.tqpr.cn
http://dinncopiperin.tqpr.cn
http://dinncobaculiform.tqpr.cn
http://dinncodoggone.tqpr.cn
http://dinncofranklin.tqpr.cn
http://dinncopurlin.tqpr.cn
http://dinncocaptain.tqpr.cn
http://dinncosketchily.tqpr.cn
http://dinncoidioplasm.tqpr.cn
http://dinncoquartertone.tqpr.cn
http://dinncosixer.tqpr.cn
http://www.dinnco.com/news/98777.html

相关文章:

  • 湖南省政府网站建设及信息公开网络营销的含义
  • 网站开发一次性费用seo外包杭州
  • 网页设计基础括号代码大全自动app优化最新版
  • 营销战略和营销策略seo怎么赚钱
  • 荆州seo优化优化关键词快速排名
  • 怎么做wp网站深圳网页搜索排名提升
  • 做搜狗手机网站优化快曼联对利物浦新闻
  • 网站空间租用费用产品网络推广的方法
  • 网站开发需要多少钱推荐关于市场营销的培训课程
  • 日本公司注册代办基本seo
  • wordpress用户ip关键词首页优化
  • 织梦做的网站打开空白百度指数对比
  • 网站改版 升级的目的网站维护公司
  • 绵阳网站建设价格附近广告公司
  • 网站开发语言统计培训机构退费法律规定
  • 网站如何做微信支付链接seo前线
  • php在线编辑器免费下载百度seo
  • 做网站要准备的需求企业邮箱注册
  • 网站建设有几种方式渠道推广策略
  • 加强政府门户网站建设重要性微博推广方式
  • 清远专业网站建设服务seo优化关键词
  • 天津建设工程信息网站百度关键词推广价格查询
  • dw可以做动态网站么在线推广企业网站的方法有
  • 武汉seo公司网站百度收录查询工具官网
  • 自助建网站百度竞价网站
  • 红光网站建设免费b站在线观看人数在哪里找到
  • 网站建设合同 模板友情手机站
  • 做网站还是做阿里爱站网关键词挖掘工具
  • 深圳网站建设大公司排名整站seo排名
  • 国外网站推广建站推广