「FreeScriptの練習2」の版間の差分

提供:yonewiki
編集の要約なし
タグ: 手動差し戻し
編集の要約なし
1行目: 1行目:
[[FreeScriptの練習4]]
[[FreeScriptの練習6]]
<yjavascript></script>
<yjavascript></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/vs2015.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/vs2015.css">

2024年12月28日 (土) 23:56時点における版

FreeScriptの練習6


Public Sub グーグル検索()
  Dim driver As Selenium.EdgeDriver
  Set driver = New Selenium.EdgeDriver
     
  With driver
    .Start
    .Get "https://www.google.com/"
    .FindElementByName("q").SendKeys ("Yonewiki")
    .FindElementByCss("input.gNO89b").Click '.FindElementById("btnK").Click
    Debug.Print .FindElementById("search").Text
    .Quit
  End With
End Sub

Public Sub グーグル検索()
  Dim driver As Selenium.EdgeDriver
  Set driver = New Selenium.EdgeDriver

  With driver
    .Start
    .Get "https://www.google.com/"
    .FindElementByName("q").SendKeys ("Yonewiki")
    .FindElementByCss("input.gNO89b").Click '.FindElementById("btnK").Click
    Debug.Print .FindElementById("search").Text
    .Quit
  End With
End Sub

test string.