-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathprefer-locator.ts
65 lines (60 loc) · 1.41 KB
/
prefer-locator.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import ESTree from 'estree'
import { getStringValue, isPageMethod } from '../utils/ast.js'
import { createRule } from '../utils/createRule.js'
const pageMethods = new Set([
'click',
'dblclick',
'dispatchEvent',
'fill',
'focus',
'getAttribute',
'hover',
'innerHTML',
'innerText',
'inputValue',
'isChecked',
'isDisabled',
'isEditable',
'isEnabled',
'isHidden',
'isVisible',
'press',
'selectOption',
'setChecked',
'setInputFiles',
'tap',
'textContent',
'uncheck',
])
function isSupportedMethod(node: ESTree.CallExpression) {
if (node.callee.type !== 'MemberExpression') return false
const name = getStringValue(node.callee.property)
return pageMethods.has(name) && isPageMethod(node, name)
}
export default createRule({
create(context) {
return {
CallExpression(node) {
// Must be a method we care about
if (!isSupportedMethod(node)) return
context.report({
messageId: 'preferLocator',
node,
})
},
}
},
meta: {
docs: {
category: 'Best Practices',
description: 'Suggest locators over page methods',
recommended: false,
url: 'https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-locator.md',
},
messages: {
preferLocator: 'Prefer locator methods instead of page methods',
},
schema: [],
type: 'suggestion',
},
})