Andrii Balakhtar

Results 11 issues of Andrii Balakhtar

Let's say i have very simple yaml config with envs: ```yaml default: my_section: my_param: "default settings content" development: my_section: my_param: "development settings content" ``` And i want to override `my_param`...

bug
question
Docs

As @elyezer correctly pointed in #327 , helpers should be named after API path, so helpers like `list_scparams` should be renamed to `smart_class_parameters`. List of affected helpers: - Environment.list_scparams -...

#267 added two extra fields to PartitionTable entity for sat6.2 + Need to cover with unit tests lines [3009-3011](https://github.com/SatelliteQE/nailgun/pull/267/files#diff-3822710a997c3f2f7c3e93e884af69caR3009) and [2163-2170](https://github.com/SatelliteQE/nailgun/pull/267/files#diff-3822710a997c3f2f7c3e93e884af69caR2163). The first test to validate different fields set in...

Currently am_i_here() is only called before performing navigation (to check maybe we're already there and there's no need to change the page), but not after, which may hide some issues...

enhancement
high

Sometimes searchbar has optional filter(s) - dropdown with lce/repo/cv etc to filter by: ![image](https://user-images.githubusercontent.com/11719030/45558323-4f285700-b848-11e8-9170-cc432d6e5510.png) Instead of overriding entire search method for such cases we could think of accepting optional `filters`...

enhancement
low
view

Current settings implementation is basically a stub for PoC, they should definitely evolve into something better. Two main issues - no validations at all and no support of nested sections...

enhancement
good first issue
low

Similar to [robottelo.ui.Base.delete](https://github.com/SatelliteQE/robottelo/blob/master/robottelo/ui/base.py#L199) we should create a helper method which will handle entity deletion and ensure deleted entity can't be found using search. Couple of improvements which would be nice...

low

Currently we do have `Login` as entity with methods like `login` and `logout`. Session calls those methods in `__enter__()` and `__exit__()` accordingly. That's basically the approach robottelo is using. CFME...

question
low

In some cases we have multiple widgets in single table cell - e.g. 2 buttons in 'Actions' column, but currently Table widget supports only 1 widget per column. We can...

bug

Some of widgets are accepting `locator` arg as first arg, e.g. `Text()`, `Table()`, `Select()`, etc. Others (usually inputs) - as a third or forth, the first one for them is...