Posts made by Itamar Tzadok

The place we are supposed to put .feature files is

path/to/plugin/tests/behat

and while this can work with many feature files, in some cases it may be more manageable to add a logical division within that place, e.g.

path/to/plugin/tests/behat/cat1

path/to/plugin/tests/behat/cat2

path/to/plugin/tests/behat/cat1/cat1.1

etc.

This is possible in 2.8 b/c there the yml lists the feature places (folders) rather than particular feature files. In 2.9 it lists particular files but it doesn't take files from sub-folders.

smile

With respect to not being able to apply a preset, assuming you have experienced this issue on 2.9dev, it appears that 2.9 contains some changes that interfere with the current implementation of this feature in the Dataform. Naturally the Dataform will be adjusted accordingly for the release of Dataform 2.9. In the meantime you should probably use Moodle stable versions to test the Dataform. smile

You can click a css element in a css element. For example:

I click on "a" "css_element" in the "div.viewlink" "css_element"

Or, if the item you want to click is already unique by some css selector, you can simply use something like:

I click on "div.viewlink a" "css_element"

It really depends on the DOM where you want to click.

hth smile