- 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.
- Java多線程編程實戰指南:設計模式篇(第2版)
- Facebook Application Development with Graph API Cookbook
- DevOps with Kubernetes
- 大學計算機應用基礎實踐教程
- Python深度學習
- 實用防銹油配方與制備200例
- Java 9 Programming Blueprints
- 軟件項目管理實用教程
- Java EE 7 Performance Tuning and Optimization
- C++新經典
- Python全棧數據工程師養成攻略(視頻講解版)
- Mastering C++ Multithreading
- HTML5權威指南
- 深入淺出Python數據分析
- Python Deep Learning