This is a bookmarklet you can add to Chrome or Firefox which will allow you to create a story in...
When text renders differently in Firefox and Chrome, it may be caused by a font alias that both browsers handle...
Projects with more than one developer should always consider to enforce code review even for small changes to improves the...
This collection contains some useful design resources for developers. Many of them were mentioned in the Refactoring UI tutorials.
When using Chrome for Selenium tests, the chromedriver binary will be used to control Chrome. To debug problems that stem...
When you update your ChromeDriver to version 75 or beyond, you might get w3c errors in your tests.
Download buttons can be difficult to test, especially with Selenium. Depending on browser, user settings and response headers, one of...
TL;DR Most web applications do not require action on this. SameSite=None (old browser default) will continue to work...
When your code does not behave as expected, you can use a debugger statement ("breakpoint") at any point in your...
The rendered font often depends on the local font your system provides, therefore you often find a rule like below...
When you created a project on the Google API Console which is not being used, you may receive an e...
Accessing pseudo elements via JavaScript or jQuery is often painful/impossible. However, accessing their styles is fairly simple. Using getComputedStyle
Mobile Chrome and Safari support the "web share API" which allow you to use the native share functionality of an...
Geordi uses parallel_tests if available for running the test suite. To debug an application it is very unhandy to...
TL;DR: All modern browsers default to using the element as the main document viewport. In CSS, prefer to set...
Cross-Site Request Forgery (CSRF) is an attack pattern for websites. A CSRF attack is usually relevant in a...
A JavaScript error in an E2E test with Selenium will not cause your test to fail. This may cause you...
...HTML's accepts a single file. You can allow multiple files via . But sometimes, selecting multiple files is not enough...
Google Chrome has a subtle rendering bug that hits me once in a while. It usually occurs in sliders with...
As a web developer, you know Google Analytics (GA). Probably you've dropped the GA snippet into more than one...
The 90s are calling: they want their tables back. Unfortunately, you need them all for laying out your HTML emails...
Browsers' printing methods usually don't print background colors. In most cases this is the desired behavior, because you don...
Touch devices have their own set of events like touchstart or touchmove. Because mobile browsers should also work with with...
Here is how to use Chromedriver without libraries like selenium-webdriver. This can be useful for debugging. The following example...