你不如说这个社会。。。
这个现象只靠自我认知是不够的,想想给测试人员发工资的角色,是什么标准。
我现在还感觉自己是个刚出校门的
嗯。文本不行,就换 xpath,xpath 不行就用 css
做个兼容?这几个都用,异常了就换一个
好直接
不能满足啥?
淡定,我投资都是亏到 120% 的。。。
羡慕有勇气辞职的同学
我是 INFP,非常内向的人。
前端同学跑到测试社区吐槽。。。是怕前端看到么。。。
问了下 tongyilingma,这法子可以。
先做基建里的流程标准化吧
社区代码在 github 上,能发个 pull request 么。。
看了几篇产品设计的文章,关于打开方式,可能的确适合开新的一页。等我有时间来调整下。
ChatGPT 在软件测试中的应用,不仅可以提高测试效率和质量,还能协助测试团队更有效地识别和解决问题。
那你倒是在工作中用起来呀。
work from home,这个我喜欢。
有突破,已经有很多培训机构整理整理再收费培训了。
你这个想法是想累死高飞 @ycwdaaaa
咱们熬过了好多起起伏伏的行业周期。
想想一天吃一碗泡面的日子……
你这里面,明显是 close 这个方法是没有的呀,参考:https://github.com/appium/python-client/blob/master/appium/webdriver/mobilecommand.py
这里面没有 close.
/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/selenium/webdriver/remote/webdriver.py:459: in close
self.execute(Command.CLOSE)
你用的是的 remote,这里是有 CLOSE 的,参见:https://github.com/SeleniumHQ/selenium/blob/trunk/py/selenium/webdriver/remote/command.py
这里其实是对不上的,比较奇怪。不过 appium python client 里面用 remote 也只是用了 NEW_SESSION、FIND_ELEMENT(s)、GET_ELEMENT_ATTRIBUTE、FIND_CHILD_ELEMENT(s)、SEND_KEYS_TO_ELEMENT。本质上 appium-uiautomator2-server 里面没有实现那就应该没有了。
quit 倒是有,
remote 里面:
Command.QUIT: ("DELETE", "/session/$sessionId"),
uiautomator2 driver 里面 里面:
async deleteSession () {
this.log.debug('Deleting UiAutomator2 server session');
// rely on jwproxy's intelligence to know what we're talking about and
// delete the current session
try {
await this.jwproxy.command('/', 'DELETE');
} catch (err) {
this.log.warn(`Did not get confirmation UiAutomator2 deleteSession worked; ` +
`Error was: ${err}`);
}
}
@Override
public void handleHttpRequest(IHttpRequest request, IHttpResponse response) {
BaseRequestHandler handler = null;
if ("GET".equals(request.method())) {
handler = findMatcher(request, getHandler);
} else if ("POST".equals(request.method())) {
handler = findMatcher(request, postHandler);
} else if ("DELETE".equals(request.method())) {
handler = findMatcher(request, deleteHandler);
}
if (handler != null) {
handleRequest(request, response, handler);
}
}
把你的 capabilities 贴出来看看
不能关闭,执行这条 driver.close()
报错是咋样的?