- Selenium Design Patterns and Best Practices
- Dima Kovalenko
- 197字
- 2021-08-05 17:59:34
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "You can even open the search_test.html
file in your web browser and see how it looks!"
A block of code is set as follows:
more_info_buttons = special_items.collect do |special_item| special_item.find_element(:class, "more-info") end
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
require 'rubygems' require 'selenium-webdriver' selenium = Selenium::WebDriver.for(:firefox) selenium.get("http://awful-valentine.com/") selenium.find_element(:id, "searchinput").clear selenium.find_element(:id, "searchinput").send_keys("cheese") selenium.find_element(:id, "searchsubmit").click selenium.quit
Any command-line input or output is written as follows:
ruby run_tests.rb
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Click on Install Now when it becomes clickable after several seconds."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- 從零構建知識圖譜:技術、方法與案例
- JavaScript+DHTML語法與范例詳解詞典
- 算法訓練營:入門篇(全彩版)
- GitLab Repository Management
- 大學計算機基礎(第2版)(微課版)
- Learning Selenium Testing Tools(Third Edition)
- Mastering Apache Spark 2.x(Second Edition)
- Drupal 8 Module Development
- 深入理解BootLoader
- Visual Basic程序設計基礎
- 安卓工程師教你玩轉Android
- 計算機常用算法與程序設計教程(第2版)
- Implementing DevOps with Ansible 2
- .NET應用架構設計:原則、模式與實踐
- D Cookbook