Last active
November 12, 2018 15:51
-
-
Save athlonUA/65e9ec52d2ba71508f8c7e8fa092fee8 to your computer and use it in GitHub Desktop.
Solution of the "Цвет настроения — красный" Game https://meduza.io/games/tsvet-nastroeniya-krasnyy-igra-meduzy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function f() { | |
const nodes = document | |
.getElementById('/embed/colors-game') | |
.contentWindow.document.getElementsByClassName('_3K3dipl65wOMpaMU-KVKf0'); | |
const nodesByColor = {}; | |
for (let i = 0; i < nodes.length; i++) { | |
const outerHTML = nodes[i].outerHTML; | |
const color = outerHTML.split('background-color: ')[1].split(';')[0]; | |
if (typeof nodesByColor[color] === 'undefined') { | |
nodesByColor[color] = []; | |
} | |
nodesByColor[color].push(i); | |
} | |
const colors = Object.keys(nodesByColor) | |
for (let i = 0; i < colors.length; i++) { | |
const currentColor = colors[i]; | |
if (nodesByColor[currentColor].length === 1) { | |
nodes[nodesByColor[currentColor][0]].click(); | |
break; | |
} | |
} | |
} | |
setInterval(f, 50); |
Author
athlonUA
commented
Nov 12, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment