Giter VIP home page Giter VIP logo

Comments (34)

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024 1

I don't how much about the code but can this be of some help?

https://www.browserstack.com/guide/python-selenium-select-dropdown

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024 1

In case you update the readme for macOS, you may want to add that the binary has to be made executable by running chmod a+x /path/to/binary before running on the terminal.

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

I get this:

image

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

image
I get this with the latest exe

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

I am able to generate accounts with this without any issue

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

image I get this with the latest exe

The problem is that it's probably affected by headless mode, but I don't get that error.

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

I see, I anyways can use GitHub CI so its ok.

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

Extract this archive to root project folder with replace files
modules.zip
And try run again.

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

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

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

image

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

Also, your software is now detected as a virus by Windows Defender :(

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

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.

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

image

It seems to be because of the country. I removed the country change in the last global update, as I haven't found a way to address this yet.

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

I'll have to use a VPN then

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

Should I keep the issue open?

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

Стоит ли мне оставить вопрос открытым?

YES

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

Try this ESET-KeyGen_v1.1.0.1-pre.zip

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

Try this ESET-KeyGen_v1.1.0.1-pre.zip

same error

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

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

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

ok

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

ESET-KeyGen_v1.1.0.1-pre2.zip

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

manually selecting ukraine worked

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

I guess thats not a very nice way though.

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

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.
This still needs to be put back into the project somehow.

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024
<div class="select__single-value ltr-1dimb5e-singleValue">India</div>

I got this

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024
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?

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

I found the new method I'm just laughing at how stupid I was and how much time I wasted!!

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

Good to know. I am happy to test.

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

Good to know. I am happy to test.

ESET-KeyGen_v1.1.1.0-pre.zip

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

image
It selected ukraine though

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

Code Refers to a dead DOM pointer. I'll see what I can do about it

from eset-keygen.

rzc0d3r avatar rzc0d3r commented on May 20, 2024

ESET-KeyGen_v1.1.1.0-pre2.zip

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

It works

from eset-keygen.

AdityaGarg8 avatar AdityaGarg8 commented on May 20, 2024

ESET-KeyGen_v1.1.1.0-pre2.zip

Even macOS binary works now

image

from eset-keygen.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.