-
Notifications
You must be signed in to change notification settings - Fork 794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to generate keys on Windows #61
Comments
I am able to generate accounts with this without any issue |
I see, I anyways can use GitHub CI so its ok. |
Extract this archive to root project folder with replace files |
It turns out that it is not setting the region correctly. My region is India and trial is not there so thats why it doesn't work |
Also, your software is now detected as a virus by Windows Defender :( |
Because pyinstaller uses algorithms similar to upx, and that's what viruses do. So all files with such algorithms are considered viruses, although this is not always the case. |
I'll have to use a VPN then |
Should I keep the issue open? |
YES |
I don't how much about the code but can this be of some help? https://www.browserstack.com/guide/python-selenium-select-dropdown |
Try this ESET-KeyGen_v1.1.0.1-pre.zip |
same error |
I'll send you a new version right now. There you will have to manually select the country. Select Ukraine and in the console press enter |
ok |
manually selecting ukraine worked |
I guess thats not a very nice way though. |
I just wanted to see if the country had any effect on the restrictions. Well, as you can see, it does. |
I got this |
from selenium import webdriver
from selenium.webdriver.support.ui import Select
from selenium.webdriver.common.by import By
# Create a webdriver instance (make sure you have the appropriate driver installed)
driver = webdriver.Chrome()
# Open the webpage
driver.get("your_website_url_here")
# Find the element by its class name (you can use another locating strategy if needed)
country_element = driver.find_element(By.CLASS_NAME, "select__single-value")
# Use Selenium's Select class to interact with dropdowns
select = Select(country_element)
# Change the country to the desired one (replace 'NewCountry' with the actual country name)
new_country = 'NewCountry'
select.select_by_visible_text(new_country)
# You might need to wait for the changes to take effect (if there's any dynamic loading)
# You can use WebDriverWait for this purpose
# Perform any additional actions or submit the form if needed
# Close the browser window
driver.quit() Can this work? |
I found the new method I'm just laughing at how stupid I was and how much time I wasted!! |
Good to know. I am happy to test. |
|
Code Refers to a dead DOM pointer. I'll see what I can do about it |
It works |
In case you update the readme for macOS, you may want to add that the binary has to be made executable by running |
When I try the exe file on Windows, I get this error when I try to generate keys. I can generate accounts though
The text was updated successfully, but these errors were encountered: