You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, the regular (non-layout mode) text extraction is mostly implemented in a method inside the PageObject class directly. This makes it hard to keep the complexity low, requires nonglobal variables and bloats the PageObject more and more on every new error handler.
For this reason, we should look into moving the actual internal implementation to a dedicated module/class to allow for easier refactoring and reduce file/module complexity.
The text was updated successfully, but these errors were encountered:
At the moment, the regular (non-layout mode) text extraction is mostly implemented in a method inside the
PageObject
class directly. This makes it hard to keep the complexity low, requiresnonglobal
variables and bloats thePageObject
more and more on every new error handler.For this reason, we should look into moving the actual internal implementation to a dedicated module/class to allow for easier refactoring and reduce file/module complexity.
The text was updated successfully, but these errors were encountered: