五十元付费解决一个 Python selenium 的问题?

2017-10-11 08:11:58 +08:00
 woshichuanqilz

问题在这里, 也希望结识一个前端高手, 付费处理我的问题。

https://www.v2ex.com/t/395012

7580 次点击
所在节点    Python
35 条回复
woshichuanqilz
2017-10-11 23:09:17 +08:00
价格低了可以商量, 这个都是小问题, 我主要不知道怎么定价, 能解决问题的话, 这个也是个开始,以后会有很多共同进步合作的机会, 我不知道这个怎么定价合适, 不合理的话可以提, 主要这个问题困扰我很久了。
woshichuanqilz
2017-10-11 23:09:51 +08:00
@hebwjb 问题就是我贴的那个连接, 有时间麻烦看一下。
murmur
2017-10-11 23:11:26 +08:00
@Mavious 不是说解决问题的过程值 50,发现问题的过程值 550 么,加起来正好 600
woshichuanqilz
2017-10-11 23:11:32 +08:00
@neoblackcap 可以加我微信 happy_lizhe, 谢谢。
woshichuanqilz
2017-10-11 23:13:37 +08:00
@SoraneKazehana 谢谢, 可以加我 happy_lizhe 微信 谢谢
woshichuanqilz
2017-10-11 23:16:19 +08:00
我其实并没有鄙视劳动各位劳动成果的意思
五十对于你们很多程序员不算个钱, 但是对于我这个业余的菜鸟来说已经不是一个小数字了。
之前的帖子实在没有人理会, 我才发了这个付费的帖子。 愿意帮忙的十分感谢, 觉得价钱不合适的那就不好意思了, 我也没那么多钱。 在此多谢能理解的各位。
HYSS
2017-10-11 23:43:49 +08:00
楼主 50 块很有诚意了 你看看论坛上有几个愿意付费解决的
coderdusk
2017-10-12 03:05:12 +08:00
@SoraneKazehana 给 50 可以了,别说跨省给你抓起来,招惹了老爷们,平台都给你端了
moosoome
2017-10-12 07:37:43 +08:00
如果 lz 上来就说 50 块我觉得确实懒得理,只是 lz 十天前提的问题无人解决,卡在那里那么久提出付费请求解决没什么毛病吧?大家从新手上来的时候谁没被卡住过...相互理解吧

以及,50 块就不是钱了?现在这么看不起的
gimp
2017-10-12 09:00:45 +08:00
楼上不少人好像跑题了

---

刚才测试了一下你说的这个输入框,我这里测试输入没有问题

#!/bin/env python
from selenium import webdriver
from selenium.webdriver.common.by import By
import time

driver = webdriver.Firefox()
driver.get("这里填写的是淘宝登陆页的地址")

time.sleep(20)
print("time sleep ok")

# 填写邮箱与密码登陆
driver.find_element(By.ID, 'TPL_username_1').send_keys("账号")
time.sleep(1)

driver.find_element(By.ID, 'TPL_password_1').send_keys("密码")
time.sleep(1)

driver.find_element(By.ID, 'J_SubmitStatic').click()
time.sleep(5)

driver.get("这里填写的是你要购买的商品链接")
print("goods page sleep")
time.sleep(30)

driver.find_element(By.ID, 'J_LinkBuy').click()
time.sleep(5)

driver.find_element(By.ID, 'J_phone').send_keys("18211112222")
print("send phone number ok")
time.sleep(10)


上面是最小化的测试代码

我的环境如下:

Windows 7
Firefox 55.0.3 (32 位)
Python 3.6.2
selenium (3.5.0)

---

哪里有问题再问我
Mavious
2017-10-12 11:12:19 +08:00
@gimp
你好,请问你的 geckodriver 版本号多少?我也是 x86 的。https://github.com/mozilla/geckodriver/releases
我卡在配环境上了,让人暴躁的版本号。。。ffox 飚版本号搞得我不知道应该去配哪个版本。
gimp
2017-10-12 14:09:09 +08:00
@Mavious

geckodriver 0.19.0,最新版的 driver 应该会支持前几个版本的火狐的
woshichuanqilz
2017-10-12 17:52:17 +08:00
@gimp 你好还没有尝试你的代码, 我之前的问题出在哪?
woshichuanqilz
2017-10-12 23:35:54 +08:00
@gimp

这更而代码运行有点问题

[1012/233631.624:ERROR:adm_helpers.cc(62)] Failed
to query stereo recording.
time sleep ok
Traceback (most recent call last):
File "taobao3.py", line 20, in <module>
driver.find_element(By.ID, 'TPL_username_1').s
end_keys(d['accountname'])
File "C:\Anaconda3\lib\site-packages\selenium\we
bdriver\remote\webelement.py", line 352, in send_k
eys
'value': keys_to_typing(value)})
File "C:\Anaconda3\lib\site-packages\selenium\we
bdriver\remote\webelement.py", line 501, in _execu
te
return self._parent.execute(command, params)
File "C:\Anaconda3\lib\site-packages\selenium\we
bdriver\remote\webdriver.py", line 308, in execute

self.error_handler.check_response(response)
File "C:\Anaconda3\lib\site-packages\selenium\we
bdriver\remote\errorhandler.py", line 194, in chec
k_response
raise exception_class(message, screen, stacktr
ace)
selenium.common.exceptions.ElementNotVisibleExcept
ion: Message: element not visible
(Session info: chrome=61.0.3163.100)
(Driver info: chromedriver=2.31.488763 (092de99f
48a300323ecf8c2a4e2e7cab51de5ba8),platform=Windows
NT 6.1.7601 SP1 x86_64)
gimp
2017-10-13 09:18:47 +08:00
报错: “ element not visible ”

输入账号的时候有输入框吗,你观察一下

我启动的时候,默认是扫码登录的页面,我手动点击了一下账号密码登录的选项框,以便他填写账号

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/396638

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX