06 2017 档案

摘要: 阅读全文

posted @ 2017-06-27 10:10 帅胡 阅读(2053) 评论(0) 推荐(0)

摘要:如何根据搜索页面内容得到的结果生成该元素的xpath路径? 阅读全文

posted @ 2017-06-18 23:01 帅胡 阅读(250) 评论(0) 推荐(0)

摘要:首先判断元素是否存在,如果存在的时候使用location_once_scrolled_into_view就可以滚动到某个元素处,也就是滚动直到这个元素出现在屏幕里。 阅读全文

posted @ 2017-06-18 11:14 帅胡 阅读(271) 评论(0) 推荐(0)

摘要:1 Action() 2 { 3 int result = 9999; 4 5 6 lr_start_transaction("login"); 7 8 9 web_add_cookie("JSESSIONID=061460B7DFF2F7C2C4275FE06EE08184; DOMAIN=abcd.com"); 10 11 ... 阅读全文

posted @ 2017-06-13 11:32 帅胡 阅读(284) 评论(0) 推荐(0)

摘要: 阅读全文

posted @ 2017-06-13 11:14 帅胡 阅读(271) 评论(0) 推荐(0)

摘要:Error -27778: SSL protocol error when attempting to read with host "×××.*****" 阅读全文

posted @ 2017-06-13 10:20 帅胡 阅读(399) 评论(0) 推荐(0)

摘要:我们知道https通信在开始时会发送一个METHOD为CONNECT的请求,让服务器将证书以及相关的信息返回给浏览器,在没有得到这些信息之前,浏览器是不会信任服务器发来的任何数据的。So现在我们要让Fiddler帮我一起骗过浏览器,让他心甘情愿把数据交出来。 打开Fiddler,在右侧的选项卡中找到 阅读全文

posted @ 2017-06-05 17:05 帅胡 阅读(876) 评论(0) 推荐(0)

摘要:To create alerts for specific sessions, add rules using FiddlerScript. For example: Play a sound when a file is missing. (in OnBeforeResponse) Show HT 阅读全文

posted @ 2017-06-05 16:48 帅胡 阅读(167) 评论(0) 推荐(0)

摘要:To pause specific sessions, add rules using FiddlerScript to the OnBeforeRequest function (except where noted). For example: Pause all HTTP POSTs to a 阅读全文

posted @ 2017-06-05 16:40 帅胡 阅读(229) 评论(0) 推荐(0)

摘要:To customize Fiddler's Web Sessions List, add rules using FiddlerScript to the OnBeforeRequest function (except where noted). For example: Display in 阅读全文

posted @ 2017-06-05 16:39 帅胡 阅读(421) 评论(0) 推荐(0)

摘要:To test application performance, add rules using FiddlerScript to the OnBeforeResponse function (except where noted). For example: Simulate modem uplo 阅读全文

posted @ 2017-06-05 16:35 帅胡 阅读(331) 评论(0) 推荐(0)

摘要:To make custom changes to web requests and responses, use FiddlerScript to add rules to Fiddler's OnBeforeRequest or OnBeforeResponse function. Which 阅读全文

posted @ 2017-06-05 16:31 帅胡 阅读(493) 评论(0) 推荐(0)

摘要:Add Rules to Fiddler to create a new menu item as follows: List the new import at the top of your rules script as follows: Note: This example relies u 阅读全文

posted @ 2017-06-05 16:12 帅胡 阅读(459) 评论(0) 推荐(0)

摘要:The Web Sessions list contains the list of HTTP Requests that are sent by your computer. You can resize and reorder the columns in this list for your 阅读全文

posted @ 2017-06-05 15:26 帅胡 阅读(231) 评论(0) 推荐(0)

摘要:Fiddler's QuickExec box allows you to launch script-commands quickly. Keyboard Shortcuts Hit ALT+Q to quickly set focus to the QuickExec box. If Fiddl 阅读全文

posted @ 2017-06-05 15:14 帅胡 阅读(220) 评论(0) 推荐(0)

摘要:Fiddler's AutoResponder tab allows you to return files from your local disk instead of transmitting the request to the server. Creating AutoResponder 阅读全文

posted @ 2017-06-05 15:03 帅胡 阅读(222) 评论(0) 推荐(0)

摘要:Each Session object in Fiddler contains a collection of string flags, in the Session.oFlags[] collection. The flags control how the session is process 阅读全文

posted @ 2017-06-05 14:54 帅胡 阅读(991) 评论(0) 推荐(0)

摘要:Each Session object in Fiddler contains a collection of string flags, in the Session.oFlags[] collection. The flags control how the session is process 阅读全文

posted @ 2017-06-05 14:46 帅胡 阅读(349) 评论(0) 推荐(0)

摘要:先来看一张自动保存的请求片段 重点来了,下面是实现的js代码 操作步骤 Fiddler菜单 >> Rules >> Customize Rules 如果提示没有下载Fiddler ScriptEditor则按提示下载后进入下一步操作 安装好Fiddler ScriptEditor后,就能打开Cust 阅读全文

posted @ 2017-06-05 14:11 帅胡 阅读(5676) 评论(0) 推荐(0)

摘要:// 修改session中的显示样式 oSession["ui-color"] = "orange"; // 移除http头部中的MQB-X5-Referer字段 oSession.oRequest.headers.Remove("MQB-X5-Referer"); // 修改http头部中的Cac 阅读全文

posted @ 2017-06-05 14:09 帅胡 阅读(5277) 评论(1) 推荐(0)

摘要:oSession["ui-color"] = "red"; 设置字体颜色,颜色名称oSession["ui-italic"] = "yup"; 设置字体斜体,字符串无所谓oSession["ui-bold"]="QuickExec"; 设置字体加粗,字符串无所谓oSession["ui-backco 阅读全文

posted @ 2017-06-02 18:23 帅胡 阅读(1761) 评论(0) 推荐(0)

摘要:Colors by Name The named colors, sorted by name. The following code example provides a dynamic table of the named colors that can be sorted by various 阅读全文

posted @ 2017-06-02 18:07 帅胡 阅读(359) 评论(0) 推荐(0)

导航