I have been trying to make a program that brute forces infinite craft, a game where u combine 4 elements and u end up with infinite words. neal.fun/infinite-craft. So far I figured that I would use chromedriver, and use selenium. But i haven’t figured out how to move around the elements to combine them.
I tried using action chains, but it didn’t really work. This is what i have right now:
from selenium import webdriver
import time
driver = webdriver.Chrome()
driver.get('https://neal.fun/infinite-craft/')
time.sleep(5)
elements = ['water', 'fire', 'earth', 'air']
discovered_recipes = {}
driver.quit()
New contributor
Macario is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.