- Selenium Design Patterns and Best Practices
- Dima Kovalenko
- 287字
- 2021-08-05 17:59:44
Chapter 2. The Spaghetti Pattern
"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live."
--Martin Golding
Writing and maintaining any form of software is like fighting entropy; given enough time and changes, any code base will gradually decline into disorder. A test suite is a closed system; if you do not provide energy in constant upkeep and planning, the suite will deteriorate and will fail constantly. Every new feature and line of code added to our website makes our test suite obsolete. The only way to fight back these natural forces is to constantly upgrade and improve existing tests.
In this chapter, we will start to grow our test suite organically and take a look at an anti-pattern called the Spaghetti pattern. Along the way, we will pick up some more basic skills, such as using XPath and CSS selectors to locate the elements on a web page.
Note
The term anti-pattern was inspired by a great book on software design called Design Patterns: Elements of Reusable Object-Oriented Software by Erich Gamma, Richard Helm, Ralph Johnson, and John Vlissides, published by Addison-Wesley Professional and is roughly defined as a common practice, which seems appropriate for current situation, but has a lot of unintended side effects. Furthermore, a better solution for the problem does exist, but is typically ignored in favor of the initial obvious but wrong solution.
In order to write the new tests in this chapter, we will cover the following topics:
- Spaghetti pattern
- Element locator strategies
- XPath and CSS selector query languages
- Relative and absolute path
- Browser inspector tool
- Test run order
- Chain Linked pattern
- Big Ball of Mud pattern
- Python編程自學手冊
- 程序員面試白皮書
- Mastering JavaScript Object-Oriented Programming
- Developing Mobile Web ArcGIS Applications
- 深入淺出Windows API程序設計:編程基礎篇
- Mastering Android Development with Kotlin
- Getting Started with React Native
- Learning Material Design
- Kubernetes源碼剖析
- Python大學實用教程
- 零基礎學HTML+CSS
- Mastering Elixir
- SEO教程:搜索引擎優化入門與進階(第3版)
- Python Automation Cookbook
- INSTANT LESS CSS Preprocessor How-to