firefox

关于谷歌浏览器(chrome)的一些好用的插件推荐

你离开我真会死。 提交于 2021-01-09 12:14:29
很多在测试时候都可以使用 第一部分: A: Adblock Plus for Google Chrome™ https://chrome.google.com/webstore/detail/cfhdojbkjhnklbpkdaibdccddilifddb 从firefox时代就已经是神级扩展,可以屏蔽网站上那些讨厌的广告…站长永恒的敌人。 AutoCopy https://chrome.google.com/webstore/detail/dnejpbhppnaekhejffmdallnhfgleene 也是另一款firefox上应用很广的扩展,可以自动复制鼠标反选的文字,省去了邮件复制或者Ctrl+C的操作。 Autofill https://chrome.google.com/webstore/detail/nlmmgnhgdeffjkdckmikfpnddkbbfkkk 自动填表,完成大量重复性工作的利器。 AutoPager Chrome https://chrome.google.com/webstore/detail/mmgagnmbebdebebbcleklifnobamjonh 自动翻页,想象一下,从此以后再没有“下一页”这个苦逼操作是多么爽的事吧! C: Chromium Wheel Smooth Scroller https://chrome.google

CSS:CSS 字体

流过昼夜 提交于 2021-01-09 07:06:15
ylbtech-CSS:CSS 字体 1. 返回顶部 1、 CSS 字体 CSS字体属性定义字体,加粗,大小,文字样式。 serif和sans-serif字体之间的区别 在计算机屏幕上,sans-serif字体被认为是比serif字体容易阅读 CSS字型 在CSS中,有两种类型的字体系列名称: 通用字体系列 - 拥有相似外观的字体系统组合(如 "Serif" 或 "Monospace") 特定字体系列 - 一个特定的字体系列(如 "Times" 或 "Courier") Generic family 字体系列 说明 Serif Times New Roman Georgia Serif字体中字符在行的末端拥有额外的装饰 Sans-serif Arial Verdana "Sans"是指无 - 这些字体在末端没有额外的装饰 Monospace Courier New Lucida Console 所有的等宽字符具有相同的宽度 字体系列 font-family 属性设置文本的字体系列。 font-family 属性应该设置几个字体名称作为一种"后备"机制,如果浏览器不支持第一种字体,他将尝试下一种字体。 注意 : 如果字体系列的名称超过一个字,它必须用引号,如Font Family:"宋体"。 多个字体系列是用一个逗号分隔指明: 实例 p { font-family : "Times

Microsoft Edge Insider (Chrome内核的Edge)————新版已默认支持简体中文

巧了我就是萌 提交于 2021-01-09 04:36:10
自己用浏览器不喜欢折腾,希望轻度设置就可顺手得使用。 因为用火狐一直感觉速度上不及chrome内核的浏览器,字体渲染虽然优异,但是看不太习惯,就一直在用chrome内核浏览器,当然火狐也是很不错的,千人千机,每个人的喜好都不同,只是记录下自己觉得体验不错的浏览器。 之前一直用的是百分浏览器,体验相当不错,但是是谷歌的同步功能,所以用起来不是很方便。 http://www.centbrowser.cn/features.html 后来发现,微软家的Edge支持了中文,用的是微软账号同步,就下载体验,整体比较简洁,设置项进行了精简,用起来也比较顺手,也是很流畅,内核版本的跟进非常及时。 目前还处于测试阶段:金丝雀→DEV→Beat 三个版本稳定性递增。当然最不稳定的,功能更新和优化是最频繁,但难免会存在BUG。 Beat版本还未开放下载,twitter上有泄露版,感兴趣的可以去找找看。 项目官网: https://www.microsoftedgeinsider.com/en-us/ 点击上方下载按钮 我下载的是DEV版本的,金丝雀更新太频繁。 浏览器一键安装在了C盘,介意的话可以使用百分浏览器。有更多实用的手势,和下载工具的支持。 安装中文语言包的流程: 1:启动浏览器,在地址栏中输入 edge://flags/#edge-language-selection 进入语言设置面板; 2

Selenium with Firefor or Chrome profile

给你一囗甜甜゛ 提交于 2021-01-07 05:46:12
问题 I am trying to load a profile to selenium so that I dont have to keep log in to the website that selenium is about to visit. I am running it with python on my Mac. In the firefox version, I use the below code def create_selenium_FF(): profile = webdriver.FirefoxProfile('/Users/Victor/Library/Application Support/Firefox/Profiles/z3ay0enb.default') driver = webdriver.Firefox(profile) return driver It can successfully start firefox, but it doesn't have the log in info of the website that it

Using permanent profiles and cookies in Selenium

瘦欲@ 提交于 2021-01-07 03:10:09
问题 I have a Django website and I'm using Selenium. I want to have one or two permanent profiles with Chrome or Firefox, to check that users remain logged in for example after I upgrade Django and then users login from another profile/session (the default is not to remain logged in, but I patched Django to remain logged in). For this I need permanent profiles and cookies. I want to login once, and then check that I'm still logged in the next time I run Selenium tests. I searched and found out

Using permanent profiles and cookies in Selenium

北战南征 提交于 2021-01-07 03:09:12
问题 I have a Django website and I'm using Selenium. I want to have one or two permanent profiles with Chrome or Firefox, to check that users remain logged in for example after I upgrade Django and then users login from another profile/session (the default is not to remain logged in, but I patched Django to remain logged in). For this I need permanent profiles and cookies. I want to login once, and then check that I'm still logged in the next time I run Selenium tests. I searched and found out

Using permanent profiles and cookies in Selenium

纵饮孤独 提交于 2021-01-07 03:08:22
问题 I have a Django website and I'm using Selenium. I want to have one or two permanent profiles with Chrome or Firefox, to check that users remain logged in for example after I upgrade Django and then users login from another profile/session (the default is not to remain logged in, but I patched Django to remain logged in). For this I need permanent profiles and cookies. I want to login once, and then check that I'm still logged in the next time I run Selenium tests. I searched and found out

Using permanent profiles and cookies in Selenium

我只是一个虾纸丫 提交于 2021-01-07 03:07:32
问题 I have a Django website and I'm using Selenium. I want to have one or two permanent profiles with Chrome or Firefox, to check that users remain logged in for example after I upgrade Django and then users login from another profile/session (the default is not to remain logged in, but I patched Django to remain logged in). For this I need permanent profiles and cookies. I want to login once, and then check that I'm still logged in the next time I run Selenium tests. I searched and found out

python+selenium自动化软件测试(第2章):WebDriver API

孤街醉人 提交于 2021-01-06 22:59:39
2.1 操作元素基本方法 前言 前面已经把环境搭建好了,从这篇开始,正式学习selenium的webdriver框架。我们平常说的 selenium自动化,其实它并不是类似于QTP之类的有GUI界面的可视化工具,我们要学的是webdriver框架的API。 本篇主要讲如何用Python调用webdriver框架的API,对浏览器做一些常规的操作,如打开、前进、后退、刷新、设置窗口大小、截屏、退出等操作。 2.1.1 打开网页 1.从selenium里面导入webdriver模块 2.打开Firefox浏览器(Ie和Chrome对应下面的) 3.打开百度网址 2.1.2 设置休眠 1.由于打开百度网址后,页面加载需要几秒钟,所以最好等到页面加载完成后再继续下一步操作 2.导入time模块,time模块是Python自带的,所以无需下载 3.设置等待时间,单位是秒(s),时间值可以是小数也可以是整数 2.1.3 页面刷新 1.有时候页面操作后,数据可能没及时同步,需要重新刷新 2.这里可以模拟刷新页面操作,相当于浏览器输入框后面的刷新按钮 2.1.4 页面切换 1.当在一个浏览器打开两个页面后,想返回上一页面,相当于浏览器左上角的左箭头按钮。 2.返回到上一页面后,也可以切换到下一页,相当于浏览器左上角的右箭头按钮。 2.1.5 设置窗口大小 1.可以设置浏览器窗口大小

在线客服系统哪家强?百度一下,你就知道

我怕爱的太早我们不能终老 提交于 2021-01-06 21:01:38
在线客服系统 经过了几年的快速发展,俨然成为了网站客户服务、网站销售不可缺少的重要工具。在线客服系统出了具备实时的网页功能外,还发展处弹出网页的方式主动邀请访客聊天的功能,以及文件对外传功能,方便网站客服人员主动联系网站的在线客服,“变流量为销量,抓住每一个潜在的客户”。 在国内,像淘宝的阿里旺旺结合淘宝商店,提供实时管理商品,设置信息等功能。像Udesk的客服系统(具体可详见《 初识Udesk客服系统 》),作为国内首家集“在线客服+智能聊天机器人+ 工单系统 + 呼叫中心 ”为一体的智能的在线客服软件,其营销QQ业务关键词自动回复功能、智能机器人、CRM、统计数据分析系统、客户来源信息等功能一应俱全。 接下来为大家介绍几款比较好用的在线客服系统软件 1、营销QQ:QQ在线状态,这个是最常见的,但是很多网站的在线QQ客服在Firefox等非IE浏览器下面根本无法使用,总会出现版本太老的提示。这个QQ在线状态在各种浏览器环境下都适用,只有咨询功能不能很好的展示企业业务等。 2、MSN在线通,Zendesk客服系统:MSN拥有较大的规模群体,MSN其在线客服系统是专门针对网页在线客服而推出的。Zendesk整合了不同客服渠道,这一亮点为他积攒了非常可怕的一个使用群体。无论MSN还是Zendesk在中国使用的人数比较少,所以不太适应和国内企业使用。 3、阿里旺旺在线客服