yaju
yaju
Mac対応にあたりDictionaryオブジェクトを「Microsoft Scripting Runtime」の代わりに、VBA-tools/VBA-Dictionary を使用した場合、WebDriver.clsのFor Eachの部分で「実行時エラー 438 オブジェクトは、このプロパティまたはメソッドをサポートしていません」が出ます。 ```vb ' Run-time error '438': Object doesn't support this property or method For Each paramKey In parameters For Each key In dict ```...
Reference site http://blog.livedoor.jp/tarboh_w-inko/archives/37451016.html How to support IE mode in Edge ## WebDriver.cls Add IE method ```vb ' Launch 'Internet Explorer Driver Public Sub IE(ByVal driverPath As String, Optional ByVal driverUrl...
I want to add Wait Method.(SeleniumVBA's TimerWait Method) ```vb Public Sub Wait(Optional ByVal milliseconds As Long = 300) 'pause in milliseconds Dim startTime As Single, endTime As Single, nowTime As...