Webdriverxx无法启动浏览器

时间:2020-05-24 16:49:03

标签: c++ c++17 webautomation

因此,我刚刚使用webdriver ++-https://github.com/durdyev/webdriverxx进行了设置,然后我仅运行示例代码以查看其是否有效。由于某种原因,它不是,我也不知道发生了什么或如何解决。

#include <webdriverxx.h>
#include <webdriverxx/browsers/chrome.h>

    WebDriver browser = Start(Chrome());
    browser
        .Navigate("https://google.com")
        .FindElement(ByCss("input[name=q]"))
        .SendKeys("Hello, world!")
        .Submit();

它调用了一个断点

WEBDRIVERXX_FUNCTION_CONTEXT_END()

我不知道发生了什么,只是因为启动浏览器而发生了。

0 个答案:

没有答案