测试之家
  • 社区
  • 问答
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • Wiki
  • 注册
  • 登录
版主
Lihuazhang (恒温)
第 110 位会员 / 2013-10-21
阿里巴巴 @ 上海
405 篇帖子 • 7860 条回帖
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
  • 個人信息
  • 個人專欄
  • 帖子
  • 回帖
  • 收藏
  • 正在關注
  • 關注者
  • 测试用户技能功能 at 2015年05月17日

    #2 楼 @monkey 把 downercase 去掉了。 反重复的改天再做。

  • 测试用户技能功能 at 2015年05月17日

    #3 楼 @lucasluo stackoverflow 是啥模式?
    #2 楼 @monkey 暂时这样设计的,等想好之后整体怎么做再修改。

  • 测试帖子二维码功能 at 2015年05月17日

    #3 楼 @woniu 这个要看你帖子里有没有图片,一般会直接用帖子里面的图片。

  • [安装包] Appium 国内下载地址 (百度云盘,已更新至 AppiumDesktop_1.7.1) at 2015年05月17日

    你可以把下载地址也放上来啊 @mingway_hu

  • [分享] 自动化测试与持续集成方案--IOS Daily Build at 2015年05月14日

    https://developer.apple.com/library/ios/documentation/IDEs/Conceptual/xcode_guide-continuous_integration/

  • 初步使用 Docker 后感 at 2015年05月14日

    我用 docker 搭建了 ELK。感觉如果不熟练的话,效率还是很低的。。

  • Android 项目中利用 instrumentation 启动 Monkey at 2015年05月13日

    这个的使用场景讲下呗

  • iOS Monkey 测试方案 [大家可以通过 gem install smart_monkey 进行安装了] at 2015年05月13日

    #67 楼 @yun9041 回帖的时候看下下面帖子的提示。

  • iOS Monkey 测试方案 [大家可以通过 gem install smart_monkey 进行安装了] at 2015年05月13日

    #65 楼 @vigossjjj 争取做成一个好项目!

  • git 库删除了,历史记录还在怎么办?要不留痕迹! at 2015年05月13日

    #1 楼 @chenhengjie123 图是测试发图发不出的 bug。

  • 使用 chrome mobile emulation 来辅助 device 测试 at 2015年05月12日

    这个帖子也顶下,另外可以用 chromedriver 来自动化模拟。

    package com.testerhome;
    
    import org.junit.After;
    import org.junit.Before;
    import org.junit.Test;
    import org.openqa.selenium.By;
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.WebElement;
    import org.openqa.selenium.chrome.ChromeDriver;
    import org.openqa.selenium.chrome.ChromeOptions;
    import org.openqa.selenium.remote.DesiredCapabilities;
    import java.util.HashMap;
    import java.util.Map;
    
    import static org.junit.Assert.assertTrue;
    
    /**
     * Created by lihuazhang on 15/4/4.
     */
    public class ChromeMobileEmulatorTest {
    
        private WebDriver driver;
    
    
        @Before
        public void createDriver() {
            Map<String, String> mobileEmulation = new HashMap<String, String>();
            mobileEmulation.put("deviceName", "Google Nexus 5");
            Map<String, Object> chromeOptions = new HashMap<String, Object>();
            chromeOptions.put("mobileEmulation", mobileEmulation);
            DesiredCapabilities capabilities = DesiredCapabilities.chrome();
            capabilities.setCapability(ChromeOptions.CAPABILITY, chromeOptions);
            driver = new ChromeDriver(capabilities);
        }
    
        @After
        public void quitDriver() {
            driver.quit();
        }
    
        @Test
        public void testBaiduSearch() throws InterruptedException {
            driver.get("http://www.baidu.com");
            Thread.sleep(5000);  // Let the user actually see something!
            WebElement searchBox = driver.findElement(By.name("word"));
            searchBox.sendKeys("ChromeDriver");
            searchBox.submit();
            Thread.sleep(5000);  // Let the user actually see something!
            assertTrue(driver.getPageSource().contains("ChromeDriver"));
            driver.quit();
        }
    }
    
    
  • Appium 中 iOS 下的 Hybrid at 2015年05月12日

    我是来顶帖子的!有些细节好像不对。

  • 【已解决】appium 问题-运行 android native 拨号应用测试脚本报错 at 2015年05月12日

    #10 楼 @mads adb shell rm -rf /data/local/tmp/

  • 【已结束】【杭州招聘】蚂蚁金服 微贷事业部 招聘 at 2015年05月12日

    #11 楼 @zoo4778362 不招了吧?
    @wenchao

  • 【已解决】appium 问题-运行 android native 拨号应用测试脚本报错 at 2015年05月12日

    #5 楼 @mads 我意思是我这边可以运行的。你那边可能环境问题,或者你给的出错日志不对。

  • 【已解决】appium 问题-运行 android native 拨号应用测试脚本报错 at 2015年05月12日
    ➜  Desktop  python test.py
    result_20150512111752.html
    .
    Time Elapsed: 0:00:06.288321
    ➜  Desktop
    

    测试通过。和你的脚本一抹一眼,除了把退格改成了 backspace

  • 【已解决】appium 问题-运行 android native 拨号应用测试脚本报错 at 2015年05月12日

    Remote install failed: pkg: /data/local/tmp/43adfe9fcfc6677441d5aa5b07ab07df.apk

    为啥还要安装啊?

  • 修复了两个 bug,求测试 at 2015年05月11日

  • 关于 TesterHome 今天早上出现无法打开问题的解释 at 2015年05月11日

    #7 楼 @pighero001 多谢鼓励,目前还是没有到社会型。testerhome 目前对于内容的聚合能力比较弱小。

  • iOS Monkey 测试方案 [大家可以通过 gem install smart_monkey 进行安装了] at 2015年05月10日

    好东西啊!

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

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