Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Sep 23, 2023
1 parent 8431388 commit 24ca6b2
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 30 deletions.
6 changes: 3 additions & 3 deletions Source/Script/Fa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ const refresh = async () => {
25000
);

const focus = await DOM.getElement(
const Focus = await DOM.getElement(
'[data-testid="most-tracked-flights-widget"] [data-testid="list-wrapper"] > div'
);

const id = Math.floor(Math.random() * focus.length);
const Identifier = Math.floor(Math.random() * Focus.length);

(await DOM.getElement('[data-testid="map-controls__zoom-in"]')).forEach(
(el) =>
Expand All @@ -37,7 +37,7 @@ const refresh = async () => {
}, 1000)
);

focus.item(id)?.click();
Focus.item(Identifier)?.click();

(
await DOM.getElement(
Expand Down
9 changes: 0 additions & 9 deletions Target/Library/DOM.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion Target/Library/DOM.js

This file was deleted.

8 changes: 0 additions & 8 deletions Target/Script/Fa.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion Target/Script/Fa.js

This file was deleted.

7 changes: 0 additions & 7 deletions Target/Script/Ta.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion Target/Script/Ta.js

This file was deleted.

0 comments on commit 24ca6b2

Please sign in to comment.