{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

零成本实现Web自动化测试:基于Selenium WebDriver和Cucumber

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

零成本实现Web自动化测试:基于Selenium WebDriver和Cucumber

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

从目前主流的Web 自动化测试工具入手,由浅入深、全面、细致地阐述了如何使用开源测试工具来完成Web 自动化测试,便于读者轻松掌握Web 自动化测试的原理、方法和实际操作。它并不是一本讲述深奥测试理论的教科书,而是一本实战类书籍,作者尝试在书中向读者演示如何使用Selenium、WebDriver 和Cucumber 搭建起一整套稳定、高效、零成本的自动化测试平台。本书以测试Google Gmail 和Test Perfect 为例,提供了完整的Web 自动化测试解决方案。
《零成本实现Web自动化测试:基于Selenium WebDriver和Cucumber》是一本Web 自动化测试的专业工具书,也是软件测试工程师的良师益友,它可作为软件测试培训、高等院校软件相关专业的辅助教材,目标读者是初级或者有经验的软件测试工程师、对提高自动化测试的有效性感到困惑的测试经理,以及有志于从事软件测试工作的朋友。
Author Description

温素剑,毕业于电子科技大学电子信息工程专业,有多年金融和电信行业软件开发和测试经验。目前在中国平安担任软件测试经理,带领测试团队负责新渠道电销领域的测试工作。专注于自动化测试和性能测试领域,有丰富的Web、Android/iOS自动化测试和性能测试经验。
Catalogue

Selenium和WebDriver工具篇
第1章 自动化测试基础
1.1 初识自动化测试
1.1.1 自动化测试是什么
1.1.2 常见的自动化测试架构
1.1.3 自动化测试的基本流程
1.1.4 自动化测试脚本分类
1.1.5 走出自动化测试认知的误区
1.2 开源Web自动化测试
1.2.1 是否选择开源自动化测试
1.2.2 使用开源自动化测试工具的优势
第2章 Selenium简介和基础
2.1 Selenium简介
2.1.1 Selenium组件
2.1.2 Selenium发展历程
2.1.3 Selenium浏览器支持情况
2.2 Selenium基础
2.2.1 Selenium命令――Selenese
2.2.2 Selenium脚本语法
2.2.3 Selenium测试案例集
2.2.4 常用的Selenium命令
2.3 小结
第3章 Selenium IDE
3.1 Selenium IDE简介
3.1.1 安装Selenium IDE
3.1.2 运行Selenium IDE
3.2 Selenium IDE的操作接口
3.2.1 菜单栏
3.2.2 工具栏
3.2.3 测试案例面板
3.2.4 Log、Reference、UI-Element和Rollup面板
3.3 测试案例和测试案例集
3.3.1 创建测试案例
3.3.2 运行测试案例
3.3.3 调试测试案例
3.3.4 测试案例集
3.4 Selenium IDE功能扩展
3.4.1 用户扩展
3.4.2 转换代码形式
3.5 常见错误处理
第4章 Selenium命令
4.1 验证页面元素
4.2 定位页面元素
4.3 文字模板匹配
4.4 命令使用技巧
4.5 警告框、弹出框以及多窗口
第5章 Selenium 1.0(Selenium RC)
5.1 Selenium 1.0(Selenium RC)简介
5.2 Selenium RC基础
5.2.1 Selenium RC工作原理
5.2.2 Selenium RC架构
5.2.3 Selenium RC安装
5.3 使用Selenium RC
5.3.1 从Selenese到测试程序
5.3.2 构建你的测试程序
5.3.3 学习Selenium RC API
5.3.4 报告测试结果
5.3.5 为测试加入一些编程逻辑
5.3.6 Server选项
5.3.7 Selenium Server日志记录
5.3.8 处理HTTPS和安全弹出对话框
5.3.9 支持其他浏览器和浏览器配置
5.4 常见错误处理
第6章 Selenium测试案例设计
6.1 测试设计导言
6.2 测试什么
6.3 验证结果
6.3.1 断言vs.验证
6.3.2 权衡:assertTextPresent、assertElementPresent、assertText
6.4 选择一个定位策略
6.4.1 定位动态对象
6.4.2 如何避免在测试中使用复杂的XPath表达式
6.5 测试AJAX应用系统
6.6 封装Selenium通用函数
6.7 UI映射
6.8 Page Object设计模式
6.9 数据驱动测试
6.10 数据库验证
第7章 Selenium用户扩展
7.1 Selenium用户扩展简介
7.2 Action
7.3 Accessor/Assertion
7.4 定位策略
7.5 在Selenium IDE中使用用户扩展
7.6 在Selenium RC中使用用户扩展
第8章 Selenium Grid
8.1 Selenium Grid是什么
8.2 什么时候使用Selenium Grid
8.3 Selenium Grid如何工作――通过中心和节点
8.3.1 安装Selenium Grid
8.3.2 启动Selenium Grid
8.3.3 通过Selenium Grid运行测试
8.4 Selenium Grid配置
8.4.1 中心(hub)配置
8.4.2 节点(Node)配置
8.5 中心(hub)诊断信息
8.6 常见错误
第9章 Selenium 2.0和WebDriver
9.1 WebDriver基础
9.1.1 WebDriver如何驱动浏览器
9.1.2 WebDriver和Selenium Server
9.1.3 建立Selenium WebDriver工程
9.1.4 从Selenium RC迁移到Selenium WebDriver
9.1.5 常见问题
9.1.6 Selenium WebDriver API简介
9.1.7 Selenium WebDriver API命令和参数
9.2 WebDriver的各种实现
9.2.1 HtmlUnit Driver
9.2.2 Firefox Driver
9.2.3 Internet Explorer Driver
9.2.4 Chrome Driver
9.2.5 其他Driver
9.3 可选的向后相容:混用WebDriver和RC技术
9.3.1 基于WebDriver的Selenium RC
9.3.2 使用Selenium扩展WebDriver
9.4 WebDriver的高级用法
9.4.1 显式和隐式等待
9.4.2 远程WebDriver(Remote WebDriver)
9.4.3 高级用户交互
9.4.4 改变浏览器代理
第10章 Cucumber和WebDriver
10.1 Cucumber基础
10.1.1 下载安装Cucumber
10.1.2 五分钟入门
10.2 Cucumber与WebDriver结合
10.3 采用中文描述的自动化测试

自动化测试实战篇
第11章 实战――测试Google Gmail
11.1 明确测试范围
11.2 Selenium测试――登录Gmail邮箱
11.2.1 使用Selenium IDE录制脚本
11.2.2 转换脚本语言(Java Selenium RC)
11.3 Selenium测试――撰写邮件
11.3.1 使用Selenium IDE录制脚本
11.3.2 转换脚本语言(Java Selenium RC)
11.4 Selenium测试――删除邮件以及邮件列表
11.4.1 使用Selenium IDE录制脚本
11.4.2 转换脚本语言(Java Selenium RC)
11.5 Selenium测试――邮件存档
11.5.1 使用Selenium IDE录制脚本
11.5.2 转换脚本语言(Java Selenium RC)
11.6 Selenium测试――搜索邮件
11.6.1 使用Selenium IDE录制脚本
11.6.2 转换脚本语言(Java Selenium RC)
11.7 使用测试案例集来管理Selenium IDE脚本
11.8 留给读者的思考
第12章 实战――测试Test Perfect
12.1 明确测试范围
12.2 WebDriver测试――添加移动设备
12.2.1 通过Ruby脚本驱动WebDriver
12.2.2 将Cucumber和WebDriver结合
12.3 WebDriver测试――新建测试用例
12.4 WebDriver测试――测试用例运行
12.5 留给读者的思考
Selenium使用帮助篇
第13章 Selenium使用帮助
13.1 Selenium 客户端驱动配置
13.1.1 .NET客户端驱动配置
13.1.2 Java客户端驱动配置
13.1.3 Python客户端驱动配置
13.2 使用Maven导入Selenium 2.0工程
13.2.1 使用Maven导入Selenium 2.0工程到Eclipse
13.2.2 使用Maven导入Selenium 2.0工程到IntelliJ

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book