摘要: 最近在面试,发现很多候选人的简历很可惜,总结几个发现的雷点,希望能给到面试的人一些帮助 如果有不同的意见或者其他的雷点,欢迎留言补充、讨论~~ 1、不要贴照片,除非长的帅或者美 2、简历不要花里胡哨,用很亮大面积的彩色,显的不专业 3、技能的掌握程度慎用【熟练】、【熟悉】,如果写了【熟练使用Fidd 阅读全文
posted @ 2022-07-18 21:20 深藏blueblueblue 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 这个报错的原因之一:改了登录git的用户的密码 然后网上查,很多都是让执行这一句: git config --system --unset credential.helper 但是这一句命令直接输入会报:*** etc/gitconfig: Permission denied 这是因为这个命令需要管 阅读全文
posted @ 2022-06-12 15:33 深藏blueblueblue 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 把clone的url由SSH方式换为HTTPS方式即可 阅读全文
posted @ 2022-05-16 18:05 深藏blueblueblue 阅读(113) 评论(0) 推荐(0) 编辑
摘要: git submodule add 时明明已经删了文件但是还提示【already exists in the index】时因为git的缓存导致的,需要删除缓存的文件夹即可 $ git submodule add git@g***ml.git'autotest' already exists in 阅读全文
posted @ 2022-05-06 18:12 深藏blueblueblue 阅读(2387) 评论(0) 推荐(0) 编辑
摘要: 很多网上的资料是需要安装一个Active Choices Reacitive Parameter的组件来完成的,但是在工作中,很多时候我们是没有jenkins安装插件的权限的 其实很简单就可以避开,不需要安装插件 楼主的需求是:在jenkins构建的时候可以有个下拉框来选择分支 1、jenkins配 阅读全文
posted @ 2021-11-18 20:53 深藏blueblueblue 阅读(1180) 评论(0) 推荐(0) 编辑
摘要: 在 ~/.bash_profile 中配置环境变量, 每次重启终端后配置的环境变量不生效。需要重新执行 : $source ~/.bash_profile才可以。 是因为zsh加载的是 ~/.zshrc文件,而 ‘.zshrc’ 文件中并没有定义环境变量。 解决办法: source ~/.zshrc 阅读全文
posted @ 2021-08-18 14:22 深藏blueblueblue 阅读(1374) 评论(0) 推荐(0) 编辑
摘要: /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 这条命令执行完之后,需要重启终端或者直接【source /Users/***/.profile】,才能生效 怎么验证brew安 阅读全文
posted @ 2021-08-17 20:56 深藏blueblueblue 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 在ubuntu系统中执行【allure serve ***】的时候抱下面的错 java.net.UnknownHostException: host-192-168-10-48: Name or service not known at java.net.Inet6AddressImpl.looku 阅读全文
posted @ 2021-01-27 11:30 深藏blueblueblue 阅读(871) 评论(0) 推荐(0) 编辑
摘要: 概述: pytest.skip():跳过当前case,这句之前的代码正常执行,之后的不执行 pytest.xfail():标记当前case为xfail,这句之前的代码正常执行,之后的不执行 @pytest.mark.xfail:如果被注解的case执行通过,则状态为xpass。如果不通过状态为xfa 阅读全文
posted @ 2021-01-23 16:01 深藏blueblueblue 阅读(794) 评论(0) 推荐(0) 编辑
摘要: 1.selenium node启动报错信息如下: 22:26:07.086 INFO [RequestHandler.process] - Error forwarding the new session cannot find : Capabilities {browserName: chrome 阅读全文
posted @ 2020-12-06 11:05 深藏blueblueblue 阅读(602) 评论(0) 推荐(0) 编辑