📜  使用 cpp 进行网页抓取 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:52.187000             🧑  作者: Mango

代码示例1
#include 
using namespace webdriverxx;

int main() {
   WebDriver firefox = Start(Firefox());
   firefox
       .Navigate("http://google.com")
       .FindElement(ByClass("class_name"))
       .SendKeys("Hello, world!")
       .Submit();
   return 0;    
}