mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-09 13:52:23 +00:00
16 lines
676 B
Gherkin
16 lines
676 B
Gherkin
@search
|
|
Feature: Search
|
|
|
|
Scenario: Select all walls
|
|
Given an empty IFC project
|
|
And I add a cube
|
|
And the object "Cube" is selected
|
|
And I set "scene.BIMRootProperties.ifc_class" to "IfcWall"
|
|
And I press "bim.assign_class"
|
|
And I add a new item to "scene.IfcSelectorProperties.groups"
|
|
And I add a new item to "scene.IfcSelectorProperties.groups[0].queries"
|
|
And I set "scene.IfcSelectorProperties.groups[0].queries[0].selector" to "IFC Class"
|
|
And I set "scene.IfcSelectorProperties.groups[0].queries[0].active_option" to "124: IfcWall"
|
|
When I press "bim.filter_model_elements(option='select')"
|
|
Then the object "IfcWall/Cube" is selected
|