infotrex / bulk-upload-to-opensea

BULK UPLOAD NFTs to OPENSEA
276 stars 203 forks source link

Price selection Eth or Weth #245

Open MatthewTvv opened 1 year ago

MatthewTvv commented 1 year ago

There's a small window to the right of the Price Amount option.

Somehow the program opens it and then stops when it comes to select either Eth or Weth.

I mean, i just want to upload the NFTs on Eth.

but it doesn't finish the listings.

Patil-Abhishek45 commented 1 year ago

Same issue. It get confused with ETH and WETH. Program crashes after that point. Loop does not continue to run.

MatthewTvv commented 1 year ago

Got any solutions ?

alex8455 commented 1 year ago

Please let me know if anyone finds a solution!!! I have entered about 600 manuals so far, it is very difficult...

Gaviar commented 1 year ago

Hello everyone, I tried different versions of the script, and different versions of the browser and driver, same problem, who solved it?

Gaviar commented 1 year ago

I also wrote to the author in all known sources of communication with no response((((

Gaviar commented 1 year ago

Праворуч від параметра Сума ціни є невелике вікно.

Якимось чином програма відкриває його, а потім зупиняється, коли потрібно вибрати Eth або Weth.

Я маю на увазі, що я просто хочу завантажити NFT на Eth.

але це не закінчує списки.

Hi did you find a solution?

netuserjun commented 1 year ago

Праворуч від параметра Сума ціни невелике вікно. Якимось трібно вибрати Eth або Weth. Я маю на увазі, що я просто хочу завантажити NFT на Eth. але це не закінчує списки.

안녕하세요 해결책을 찾으셨습니까?

I also got the same problem.
So I modify the code part little. About 613line in upload_2captcha_V2.py you can fine below.

#if duration_date != 30:
amount.send_keys(Keys.TAB)

I changed it as below

#if duration_date != 30: 
amount.send_keys(Keys.TAB*3)

I hope your problem will be solved.

netuserjun commented 1 year ago

Also If you change the code, you should restart the python program.

Gaviar commented 1 year ago

Thank you very much for the tip, everything works)))))

Patil-Abhishek45 commented 1 year ago

Also If you change the code, you should restart the python program.

It works but my program didn't sign the wallet. It get stuck after entering 6 months in duration. Any solution ?

netuserjun commented 1 year ago

Also If you change the code, you should restart the python program.

It works but my program didn't sign the wallet. It get stuck after entering 6 months in duration. Any solution ?

You have to check your wallet "Sign" button language. If the button text is not 'Sign', you have to change language or code(about 720line).

If the language already English, change below. 650 line is wait_xpath('//div[@role="dialog"]//h4[contains(text(), "Complete your listing")]')#HKN Please change it as wait_xpath('//div[@role="dialog"]//h4[contains(text(), "Complete listing")]')#HKN

OggyArts commented 1 year ago

Also If you change the code, you should restart the python program.

It works but my program didn't sign the wallet. It get stuck after entering 6 months in duration. Any solution ?

You have to check your wallet "Sign" button language. If the button text is not 'Sign', you have to change language or code(about 720line).

If the language already English, change below. 650 line is wait_xpath('//div[@role="dialog"]//h4[contains(text(), "Complete your listing")]')#HKN Please change it as wait_xpath('//div[@role="dialog"]//h4[contains(text(), "Complete listing")]')#HKN

Also If you change the code, you should restart the python program.

It works but my program didn't sign the wallet. It get stuck after entering 6 months in duration. Any solution ?

You have to check your wallet "Sign" button language. If the button text is not 'Sign', you have to change language or code(about 720line).

If the language already English, change below. 650 line is wait_xpath('//div[@role="dialog"]//h4[contains(text(), "Complete your listing")]')#HKN Please change it as wait_xpath('//div[@role="dialog"]//h4[contains(text(), "Complete listing")]')#HKN

Thanks it Worked !!!!

Friday12322 commented 1 year ago

Также, если вы измените код, вы должны перезапустить программу Python.

Это работает, но моя программа не подписала кошелек. Он застревает после ввода 6 месяцев продолжительности. Любое решение?

Вы должны проверить язык кнопки «Подписать» вашего кошелька. Если текст кнопки не «Подписать», вам необходимо изменить язык или код (около 720 строк).

Если язык уже английский, измените ниже. 650 строка wait_xpath('//div[@role="dialog"]//h4[contains(text(), "Complete your listing")]')#HKN Пожалуйста, измените ее какwait_xpath('//div[@role="dialog"]//h4[contains(text(), "Complete listing")]')#HKN

a do not tell me what to do if the script gets stuck on Set duration I understand the error starts somewhere on line 616 of the code ?

strangeways-dev commented 1 year ago

Праворуч від параметра Сума ціни невелике вікно. Якимось трібно вибрати Eth або Weth. Я маю на увазі, що я просто хочу завантажити NFT на Eth. але це не закінчує списки.

안녕하세요 해결책을 찾으셨습니까?

I also got the same problem. So I modify the code part little. About 613line in upload_2captcha_V2.py you can fine below.

#if duration_date != 30:
amount.send_keys(Keys.TAB)

I changed it as below

#if duration_date != 30: 
amount.send_keys(Keys.TAB*3)

I hope your problem will be solved.

making progress, now it selected the duration element but it does not open up the duration dropdown and the program waits until it is either clicked on or until we press RETURN.

I am new to Python I tried adding 'amount.send_keys(Keys.RETURN)' after 'amount.send_keys(Keys.TAB*3)' but this stops the program from even launching.

How would I make the program automatically press return? TIA