测试之家
  • 社区
  • 问答
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • Wiki
  • 注册
  • 登录
版主
Lihuazhang (恒温)
第 110 位会员 / 2013-10-21
阿里巴巴 @ 上海
405 篇帖子 • 7855 条回帖
2537 关注者
33 正在关注
33 收藏
人生很多事情你也已经经历了。从我们35岁开始,到60岁、70岁,也就是经历一些生老病死的日常事情。加油!
打赏支持
GitHub Public Repos
  • ai-agents-with-llama3 12

  • lihuazhang.github.com 9

    my blog

  • juit5-json-params 7

    juit5-json-params

  • MediaCrawler 1

    小红书笔记 | 评论爬虫、抖音视频 | 评论爬虫、快手视频 | 评论爬虫、B 站视频 | 评论爬虫、微博帖子 | 评论爬虫

  • javascript-algorithms 1

    Algorithms and data structures implemented in JavaScript with explanations and links to further r...

  • ahchoo 1

    test for cloudfoundry

  • AutoClick 1

    基于Robotium的自动遍历方案

  • UI-Testing-Cheat-Sheet 1

    How do I test this with UI Testing?

  • revolt-fx 0

  • letsmove 0

More on GitHub
  • 个人信息
  • 专栏
  • 话题
  • 回帖
  • 收藏
  • 关注中
  • 关注者
  • Robot Framework 运行 Appium @seveniruby 的例子提示无法找到 Create Dictionary 解决方法 at 2014年01月07日

    #2 楼 @atm123 可以加论坛大群,大家都在里面

  • [已解决] Xpath 工具 at 2014年01月07日

    #3 楼 @xiaomayi0323 嗯 用 logElementTree() 看一把就可以了。

  • 互联网金融公司招聘测试工程师-薪资超高 at 2014年01月06日

    加个头像,会更加好哦。另外能介绍下工作地点之类的么?

  • appium 调用 webdriver 中 send_keys 发送汉字可以吗?怎么解决? at 2014年01月06日

    ios 可以。 Android 还不行

  • [已解决]Activity used to start app doesn't exist at 2014年01月06日

    亲,加个头像吧

  • Sample 小试遇到的问题: app 木有 UICatalog 工程目录 at 2014年01月05日

    curl -L https://developer.apple.com/library/ios/samplecode/UICatalog/UICatalog.zip -o ./sample-code/apps/UICatalog.zip

  • 你是如何做移动应用的性能测试的? at 2014年01月05日

    #2 楼 @mingway_hu 我想请你来讲下第三期的公开课 =,来说说性能测试这块怎样?

  • TesterHome 论坛分成申领 at 2014年01月05日

    #6 楼 @rabbit 多谢支持,目前东西还比较少得。论坛刚成立 3 个月不到。相信后续会有更多的资料。

  • TesterHome 论坛分成申领 at 2014年01月03日

    #1 楼 @lizhenghuan 以为你自己加好了。。

  • 论坛资源整理贴 at 2014年01月02日

    #2 楼 @guo 你有权限写 wiki 么? 有的话,可以写过去。

  • 一个用正则闯关的网站 at 2013年12月30日

    提示一下,第一关是 foo

  • [求助]driver.switchTo().window("WEBVIEW");无法工作 at 2013年12月30日
    
    //setup the web driver and launch the webview app.
      DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
      desiredCapabilities.setCapability("device", "iPhone Simulator");
      desiredCapabilities.setCapability("app", "/Users/Apple/code/SafariLauncher/build/Debug-iphoneos/SafariLauncher.app");  
      URL url = new URL("http://127.0.0.1:4723/wd/hub");
      RemoteWebDriver remoteWebDriver = new RemoteWebDriver(url, desiredCapabilities);
    
      Thread.sleep(10000);
      //switch to the latest web view
      for(String winHandle : remoteWebDriver.getWindowHandles()){
        remoteWebDriver.switchTo().window(winHandle);
      }
    
      remoteWebDriver.get("http://saucelabs.com/test/guinea-pig");
      //Interact with the elements on the guinea-pig page using id.
      WebElement div = remoteWebDriver.findElement(By.id("i_am_an_id"));
      remoteWebDriver.findElement(By.id("comments")).sendKeys("My comment"); //populate the comments field by id.
    
      //leave the webview to go back to native app.
      remoteWebDriver.executeScript("mobile: leaveWebView");      
    
      //close the app.
      remoteWebDriver.quit();
    
    

    加个头像~

  • 启动不了 selendroid,求助 at 2013年12月30日

    #2 楼 @rattlesnake 上次@seveniruby 说 4.4 暂时还没支持,可能有这个问题。 你试试看 4.3 的模拟器?

  • 启动不了 selendroid,求助 at 2013年12月30日

    Required platform does
    n't exist (API level >= 17)

    说需要 API level >= 17

  • Appium 如何模仿人工操作?动作与动作之间带时间延迟,在 java 中该如何实现呢? at 2013年12月30日

    #21 楼 @spikeshen 什么是软等待?

  • 在 win8 上安装 appium 到这一步停住了 at 2013年12月28日

    是因为 https 拿不到。

  • Appium 公开课 问题交流 at 2013年12月28日

    #6 楼 @rockchensir

    WebDriver 同样使用 XPATH 和 CSS locator。孰优孰劣,google 一下,一大把,不过目前风向偏向 CSS, 理由如下

    更快 (尤其在 IE 上)
    更简单
    更加可读
    符合 Jquery 定位逻辑
    XPATH 在不同浏览器上的实现可能不太一样,也许在 Firefox 工作,在 IE 上就不一定了。
    CSS 可以引入第三方的 Javascript 库来更好的定位元素, 比如马上要说的 Sizzle.js

  • Appium 公开课 问题交流 at 2013年12月28日

    xpath 维护起来困难么?

  • Appium 公开课 问题交流 at 2013年12月28日

    #3 楼 @sean605 appium 安装的时候会要求安装的 Selenium 的

  • 发两个 Appium 作者 Jonathan Lipps 在大会上讲解 Appium 的视频 at 2013年12月28日

    更新 优酷 上的地址。

  • [已经结束] appium 免费公开课报名开始 at 2013年12月28日

    #54 楼 @roytest001 可以点 yy 链接预订

  • Appium 如何模仿人工操作?动作与动作之间带时间延迟,在 java 中该如何实现呢? at 2013年12月27日

    为什么不用

    WebDriverWait(self.driver, 10).until(lambda d: d.find_elements_by_tag_name("staticText")) 
    

    呢?

  • 上一页
  • 1
  • 2
  • 3
  • …
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • …
  • 270
  • 271
  • 272
  • 下一页
  • 关于 / 活跃用户 / 中国移动互联网测试技术大会 / 反馈 / Github / API / 帮助推广
    TesterHome社区,测试之家,由众多测试工程师组织和维护的技术社区,致力于帮助新人成长,提高测试地位,推进质量发展。Inspired by RubyChina
    友情链接 WeTest腾讯质量开放平台 / InfoQ / 掘金 / SegmentFault / 测试窝 / 百度测试吧 / IT大咖说
    简体中文 / 正體中文 / English

    ©testerhome.com 测试之家   渝ICP备2022001292号
      渝公网安备 50022202000435号    版权所有 © 重庆年云聚力信息技术有限公司