ARTS-week2

Posted felixqiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ARTS-week2相关的知识,希望对你有一定的参考价值。

Algorithm

给你一个有效的 IPv4 地址 address,返回这个 IP 地址的无效化版本。所谓无效化 IP 地址,其实就是用 "[.]" 代替了每个 "."。

Defanging an IP Address

class Solution:
    def defangIPaddr(self, address: str) -> str:
        return address.replace('.','[.]')

Review

"How Steelkiwi QA Experts use Apache JMeter in daily work or web application performance testing with HTTP(S) protocols and csrf tokens?”

1.创建测试计划
2.录制测试脚本
3.更改代理
4.在请求中添加csrf

Tip

selenium解决登录验证码的几种方法。
1.万能验证码
2.cookie绕过

cookie= driver.get_cookies() 
...
driver.add_cookie(cookie)

3.图像识别验证码

  • pytesseract库识别图片(只能识别规则数字)
  • showapiRequest库识别验证码

Share

如何超过大多数人

  • 温故而知新

以上是关于ARTS-week2的主要内容,如果未能解决你的问题,请参考以下文章

arts-week2

ARTS-WEEK-007

ARTS-WEEK-002

ARTS-WEEK-002

ARTS-week10

arts-week6