Skip to content

Commit

Permalink
[qacode] fix for issue #243 (#244)
Browse files Browse the repository at this point in the history
* [qacode] fix for issue #243

* [qacode] fix for issue #207 (#245)

* [qacode] fix for issue #207

+ fix for dropdown_select at reload element
+ fix for unitaries , config_tests_keys
+ improved coverage to  73% to 78%
     for control_form

* [qacode] CHANGELOG for issue #207

* [qacode] fix for some situations from selenium

* [qacode] fix for issue #243
  • Loading branch information
netzulo committed Mar 17, 2019
1 parent 9b49f97 commit 4d748f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed
- find_child/find_children tests + some reload bugs #235
- Syntax error naming variable at controls.set_css_value #243

### Removed

Expand Down
2 changes: 1 addition & 1 deletion qacode/core/webs/controls/control_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def set_css_value(self, prop_name, prop_value, css_important=True):
self.bot.log.debug(
self.CB_SETCSSRULE_LOADING.format(prop_name, prop_value))
if not self.element and self.auto_reload:
self.reload(**self.s)
self.reload(**self.settings)
self.bot.navigation.set_css_rule(
self.selector, prop_name, prop_value,
css_important=css_important)
Expand Down

0 comments on commit 4d748f7

Please sign in to comment.