You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to select a Dropdown option value that contains Unicode characters, it fails finding the option and perform the click.
# purchase_point is an instance inheriting from Dropdown# class SelectFilter(Dropdown):purchase_point=filters.get_filter(filters.PURCHASE_POINT)
purchase_point.select('Default Store View')
Solution is to strip the option.html string in the _select function:
When trying to select a Dropdown option value that contains Unicode characters, it fails finding the option and perform the click.
Solution is to strip the option.html string in the _select function:
After doing this my Scenario passed:
The text was updated successfully, but these errors were encountered: