What I can trace is the following:
Incorrect use of <label for = FORM_Element>
- The label's
attribute doesn't match any element
. This might prevent the browser from correctly autofilling the form and accessibility tools from working correctly.To fix this issue, make sure the label's
attribute references the correct
of a form field.
- AFFECTED RESOURCES
- 2 resources
The two resources is:
<label for="canvas" id="cblabcanvas" class="col-form-label col-sm-3 pr-sm-2">Canvas image</label> (
The Copy JS Path is: document.querySelector("#cblabcanvas")
Outer HTM L is <label for="canvas" id="cblabcanvas" class="col-form-label col-sm-3 pr-sm-2">Canvas image</label>
Selecter is #cblabcanvas
Style is -webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
color: #666666;
list-style: none;
text-rendering: optimizespeed;
--blue: #007bff;
--indigo: #6610f2;
--purple: #6f42c1;
--pink: #e83e8c;
--red: #dc3545;
--orange: #fd7e14;
--yellow: #ffc107;
--green: #28a745;
--teal: #20c997;
--cyan: #17a2b8;
--white: #fff;
--gray: #6c757d;
--gray-dark: #343a40;
--primary: #007bff;
--secondary: #6c757d;
--success: #28a745;
--info: #17a2b8;
--warning: #ffc107;
--danger: #dc3545;
--light: #f8f9fa;
--dark: #343a40;
--breakpoint-xs: 0;
--breakpoint-sm: 576px;
--breakpoint-md: 768px;
--breakpoint-lg: 992px;
--breakpoint-xl: 1200px;
--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-weight: 400;
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
box-sizing: border-box;
margin-top: var(--bs-gutter-y);
display: inline-block;
position: relative;
width: 100%;
flex: 0 0 25%;
max-width: 25%;
padding-top: calc(0.375rem + 1px);
padding-bottom: calc(0.375rem + 1px);
margin-bottom: 0;
font-size: inherit;
line-height: 1.5;
padding-right: 0.5rem !important;
padding-left: 0;
float: none;
XPath is //*[@id="cblabcanvas"]
Full XPath is /html/body/div[2]/section[2]/div/div/div[1]/main/div[3]/div/div/div/div/div/div[1]/form/div[1]/div/div[5]/div/div/div/label
<label for="avatar" id="cblabavatar" class="col-form-label col-sm-12">Profile image</label> (The JS Path = document.querySelector("#cblabavatar")
Outer HTML is <label for="avatar" id="cblabavatar" class="col-form-label col-sm-12">Profile image</label>