-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
fix(android/action-bar): process Icon Fonts in NavigationButton the same way as in ActionItem #7842
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(android/action-bar): process Icon Fonts in NavigationButton the same way as in ActionItem #7842
Conversation
@ycherniavskyi Thanks for the PR! There are UI tests with appium for this functionality. They are located in the |
49d9105
to
48555fa
Compare
@MartoYankov thank you for pointing relative test location. As I understand current I also rebase PR on the latest master branch. |
Yes, that's basically it. |
test |
@MartoYankov could you please give me CI error of my PR? For some reason, I get the error (nsbuild01.telerik.com’s server IP address could not be found) when trying to reach http://nsbuild01.telerik.com:8080/build/job/pr-composite-ns-core-modules/2439. |
@ycherniavskyi We had some problems with the CI and it was stopped. I'll re-run it. |
test |
I differently messed up something with the test. Because from CI error comparing image, I can see correctly rendered Icon Fonts for NavigationButton on the actual image. Unfortunately, it isn't clear for me what exactly @MartoYankov could you please give me some tips how I neet fo update test, so it passed? |
@ycherniavskyi It's expected to have such failing images with our current setup. The compare is to the last passed image from In this case it looks odd that the icons in the ActionItems and the icon in the NavigationButton have the same font size, but the NavigationButton looks so much bigger. I'll have a look into this. |
@MartoYankov thank you for clarification. I basically understand the e2e test technic now. As for |
@ycherniavskyi It looks like you are right. It's also appears to be done on the native side of the Toolbar widget. |
PR Checklist
What is the current behavior?
NavigationButton
does not processfont://
prefix inicon
field.What is the new behavior?
NavigationButton
processesfont://
prefix inicon
field, the same way asActionItem
does.Unfortunately, I could not found any test fro this functionality for
ActionItem
, that is why I could not implement the correct one forNavigationButton
.