Oz is a behavioral web-ui testing framework developed to reduce test maintenance by using a predictive model rather than a scriptive model when writing tests.
Exposes some new methods on corepage for interacting with the elements on the page.
This allows for somewhat more readable language when interacting with elements on a given page, and plays nicely into creating navigation methods that use args
RELIES ON #148
Exposes some new methods on corepage for interacting with the elements on the page.
This allows for somewhat more readable language when interacting with elements on a given page, and plays nicely into creating navigation methods that use args
Assuming we've defined
using the new functionality added in #148, the navigate_to method we've written can now be defined with somewhat less awkward syntax than before.
Reads like a set of instructions that you're giving rather than
Which feels somewhat disjointed when you read it.