我正在尝试通过VBA自动化网站。我可以在主网页(www.marketsmith.com)上看到用户名和密码字段,并通过Inspect Element找到他们的名字。但是......这些字段实际上并不在那个网页上,而是出现在另一个安全页面上(https://www.marketsmith.com/secure/login.aspx#http%3a%2f%2fwww.marketsmith.com%2fdefault.aspx)。
主页上的源代码,有这个部分......
var socket = new easyXDM.Socket({
remote: 'https://www.marketsmith.com/secure/login.aspx#http%3a%2f%2fwww.marketsmith.com%2fdefault.aspx',
container: 'sign-iframe',
props: {frameborder:"0",scrolling:"no",marginheight:"0",marginwidth:"0",height:"37px",width:"360px"},
onMessage: ReceivedMessage
我如何连接到那个以便我可以自动化我需要的字段?我读了一下插座,但这对我来说是全新的。