- 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
- Learning Cython Programming
- Learning Chef
- Python自動化運維快速入門(第2版)
- Learn Scala Programming
- SQL Server 2016數據庫應用與開發習題解答與上機指導
- Cybersecurity Attacks:Red Team Strategies
- AIRIOT物聯網平臺開發框架應用與實戰
- Visual Foxpro 9.0數據庫程序設計教程
- ArcGIS for Desktop Cookbook
- 精通MySQL 8(視頻教學版)
- 3ds Max印象 電視欄目包裝動畫與特效制作
- Python自然語言理解:自然語言理解系統開發與應用實戰
- 單片機原理及應用技術
- 超簡單:Photoshop+JavaScript+Python智能修圖與圖像自動化處理
- Java 7 Concurrency Cookbook