本帖最后由 sj15627581616 于 2021-3-9 21:24 编辑
- Sub 网页操作()
- Dim cd As New FirefoxDriver '火狐浏览器
- Dim keys As New keys
- With cd
- .Start
- .Get "https://login.haikebao.com/login/login.jsp"
- .FindElementById("company").SendKeys "lanhai"
- .FindElementById("operator").SendKeys "admin"
- .FindElementById("password").SendKeys "000000"
- .FindElementByClass("button").SendKeys (keys.Enter)
- .FindElementByClass("menu_bar").FindElementsByTag("a")(3).SendKeys (keys.Enter)
- .ExecuteScript "OpenFun('stockoutlist', '出库单', 'https://stock.haikebao.com/stock/otherout/stockoutlist.jsp')"
- .ExecuteScript "OpenFun('stockoutlist', '其他出库单', 'https://stock.haikebao.com/stock/otherout/stockoutstandard.jsp?kind=other&id=&w_node=create&w_sum=1&w_num=1')"
-
- End With
- End Sub
复制代码以上是已完成部分,
现在卡在在输入框输入编码 如产品名称处输入 56A231801 可得出图中界面,出现对应然后再去进行填写对应数量,输入数量的问题应该跟输入编码是一样的,常规的方法基本都试了,还有一些没太懂,有没有熟悉 Selenium以及网页操作的大佬指点一下?
|