计划是连接到我的Ebay帐户,打开修订列表页面并使用[自定义标签]添加新的SKU#,然后关闭页面。使用FollowHyperlink https://bulksell.ebay.com/ws/eBayISAPI.dll?SingleList&sellingMode=ReviseItem&&lineId=130830715244&guest=1
我无法通过Ebay登录。如果我错了,请指出正确的方向。
答案 0 :(得分:0)
我认为FollowHyperlink不会有用。以下是打开网站登录页面并将用户名和密码传递给页面的示例VBA代码。必须知道页面上输入框的名称。
'open ASTM/AASHTO test standards website and pass agency username/password to the web page
Dim oBrowser As InternetExplorer
Set oBrowser = New InternetExplorer
oBrowser.Silent = True
oBrowser.Navigate "https://login.ihserc.com/login/erc?"
oBrowser.Visible = True
Do
'Wait till the Browser is loaded
Loop Until oBrowser.ReadyState = READYSTATE_COMPLETE
oBrowser.Document.all.Item("subAcctLoginName").Value = "username"
oBrowser.Document.all.Item("subAcctPassword").Value = "password"
oBrowser.Document.all.Item("Submit").Click
尝试适应eBay,但是有很多源代码可以通过查找框的名称,假设它们有不同的名称。我不得不使用MS Edge来打开源代码视图。如果您想使用EBay API,请搜索网络。这是一个https://forums.developer.ebay.com/questions/11447/accessing-ebay-api-using-vba-in-excel.html。