我已使用autoit _IECreate为Internet Explorer中的打开网址创建了exe文件, 这是我使用的代码。
1.
#include <IE.au3>
#include <MsgBoxConstants.au3>
Local $oIE = _IECreate("https://www.linkedin.com/uas/login")
; Check @extended return value to see if attach was successful
2.#include <IE.au3>
#include <MsgBoxConstants.au3>
Local $oIE = _IECreate("https://login.salesforce.com")
对于两个URL,我创建了2个exe文件,当我在两个不同的IE窗口中运行exe打开时,我的要求是两个URL都必须在另一个选项卡的同一IE中打开。
答案 0 :(得分:0)
我永远无法在标签页中打开IE Create,因此我使用了解决方法。
#include <Process.au3>
_RunDos("start http://www.autoitscript.com")
Sleep(3000)
_RunDos("start www.google.com")