-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDefault.sublime-commands
More file actions
85 lines (85 loc) · 2.53 KB
/
Copy pathDefault.sublime-commands
File metadata and controls
85 lines (85 loc) · 2.53 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[
{
"caption": "Browser Integration: Main Menu",
"command": "browser_integration_main_menu"
},
{
"caption": "Browser Integration: Launch Browser",
"command": "browser_integration_launch"
},
{
"caption": "Browser Integration: Reload",
"command": "browser_integration_reload"
},
{
"caption": "Browser Integration: Navigate To",
"command": "browser_integration_navigate"
},
{
"caption": "Browser Integration: Execute selected code",
"command": "browser_integration_execute"
},
{
"caption": "Browser Integration: View loaded CSS stylesheets",
"command": "browser_integration_stylesheets"
},
{
"caption": "Browser Integration: View page source",
"command": "browser_integration_source"
},
{
"caption": "Browser Integration: View localStorage content",
"command": "browser_integration_localstorage"
},
{
"caption": "Browser Integration: Select elements by CSS",
"command": "browser_integration_select"
},
{
"caption": "Browser Integration: Select elements by XPath",
"command": "browser_integration_selectxpath"
},
{
"caption": "Browser Integration: Interactive Selection",
"command": "browser_integration_selectint"
},
{
"caption": "Browser Integration: Click elements",
"command": "browser_integration_click"
},
{
"caption": "Browser Integration: Type into selected elements",
"command": "browser_integration_type"
},
{
"caption": "Browser Integration: Change selected elements class",
"command": "browser_integration_class"
},
{
"caption": "Browser Integration: Record macro",
"command": "browser_integration_record"
},
{
"caption": "Browser Integration: Stop recording macro",
"command": "browser_integration_stop"
},
{
"caption": "Browser Integration: Play macro",
"command": "browser_integration_play"
},
{
"caption": "Browser Integration: Play macro (with delays)",
"command": "browser_integration_playdelay"
},
{
"caption": "Browser Integration: Close browser",
"command": "browser_integration_quit"
},
{
"command": "open_file",
"args": {
"file": "${packages}/BrowserIntegration/BrowserIntegration.sublime-settings"
},
"caption": "Browser Integration: Settings (Default)"
}
]