yaju
yaju
@kenkousae さん TinySeleniumVBAにはZipPathはないのでisuueを書く場所が間違っています。 https://github.com/yamato1413/WebDriverManager-for-VBA
@uezo 自分のところでは、既にMacでExampleのyomoda sobaは動いています。近いうちに記事を書く予定です。 CreateObject("MSXML2.ServerXMLHTTP") の代わりに[VBA-Web](https://github.com/VBA-tools/VBA-Web)を使用していますが、その中身ではcurlを利用しています。 また、MacでShellが動作しない件については既に[記事](https://qiita.com/yaju/items/6bd6140de528346416e6)を書いてあります。 出来るか分かりませんが、最終的にはVBA-Webを使わない方向にしたいです。 ```vb ' Send HTTP request Private Function SendRequest(method As String, url As String, Optional Data As Dictionary = Nothing) As Dictionary Dim client...
>近いうちに記事を書く予定です。 2022年05月22日に書きました。 [【Excel】MacでTinySeleniumVBAを使用したい](https://qiita.com/yaju/items/caa29af1c133cd8c02e1)
Changed Capabilities.cls to use Environ variables Reference issue https://github.com/GCuser99/SeleniumVBA/issues/9 ```vb Case "internet explorer" If InStr(GetObject("winmgmts:Win32_OperatingSystem=@").OSArchitecture, "64") Then browserOptions.Add "ie.edgepath", Environ("ProgramFiles(x86)") & "\Microsoft\Edge\Application\msedge.exe" Else browserOptions.Add "ie.edgepath", Environ("ProgramFiles") & "\Microsoft\Edge\Application\msedge.exe" End If...
@thewriteway Version number mismatch in Windows build (shows v4.14 instead of v7.1) Description I’m using the v7.1 build of Squid for Windows. While the squid.exe itself reports version 7.1, the...
@thewriteway Thank you. Squid 4.14 was failing my company's security check, so this was a lifesaver.