Replies: 2 comments 2 replies
-
Thank you @ttaggorf |
Beta Was this translation helpful? Give feedback.
1 reply
-
Thank you. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Afternoon everyone. I simply wanted to post here how I got Selenium setup with Home Assistant and Proxmox to successfully pull data using this addon. I'm not a overly strong programmer and I'd never heard of Selenium, so this was somewhat of a learning curve for me, plus there is very little information on Google which was easy to follow, so hopefully this helps someone.
Nb. This guide assumes that Proxmox is configured, HA is configured and the UKBinCollectionData integration has already been added via HACS. The dev's documentation can be found here if required.
Step One: Create an LXC Container in Proxmox
ip addr
to find the correct IPv4 addressapt-get update
apt install docker.io
andapt-get install docker
docker run -d -p 4444:4444 --restart=always selenium/standalone-chrome
Step Two: Navigate to Selenium to check its running
Enter the IP address followed by port 4444 in an internet browser, for example
Obviously replace the IP with the true IP address of your LXC container.
If you have done everything right, you should reach a webpage which says 'Selenium Grid' at the top. This confirms Selenium is running OK. ✅
Step Three: Configure the integration in Home Assistant
Hope that helps. Feel free to comment below if you need any help and I'll try my best wherever possible to assist 👍
Beta Was this translation helpful? Give feedback.
All reactions