Skip to content

Instantly share code, notes, and snippets.

View RussellJQA's full-sized avatar

Russell Johnson RussellJQA

View GitHub Profile
@RussellJQA
RussellJQA / qap-mbp-js-a11y-bookmarklets-presentation.md
Last active August 13, 2021 02:09
QA at the Point, Manual Button Pushers, 12 August 2021, presentation on "Using JavaScript bookmarklets in Accessibility Testing"

QA at the Point, Manual Button Pushers, 12 August 2021

Using JavaScript bookmarklets in Accessibility Testing

Presented by Russell Johnson

Who/Where am I?

  • Live in: Pittsbugh, PA metro area
  • Work remotely as: Test Strategist (Context-Driven Software Tester) for Testlauncher (Toronto, Ontario, Canada)
@RussellJQA
RussellJQA / blog.md
Last active January 14, 2020 00:28
Testing Android Touch Target size

New Title - Android App: Testing to Tell If Your Touch Targets are Too Tiny {Tweet img with alt}

Questions:

  1. What are touch targets?
  2. How big should they be? WCAG 2.1 says 44 dpi? Google A11y scanner sayd 48 dpi?
  3. Why should you care?
@RussellJQA
RussellJQA / QuackQuackQuery-SiteSearchBox.html
Last active July 18, 2018 18:31 — forked from muffinresearch/gist:a0cc0c54d2eae243748b
QuackQuackQuery Site Search Box - Responsive, Keyboard-Accessible Site Search Box
<div role='search'>
<style>
.qqq img { float: left; margin-right: 5px; }
.qqq input { margin-bottom: 5px; }
@media screen and (max-width: 499px) {
.qqq img { display: none; }
.qqq input { width: 100%; }
}
@media screen and (min-width: 500px) {
.qqq input { width: calc(100% - 77px); }