webdriverxx icon indicating copy to clipboard operation
webdriverxx copied to clipboard

Client API for Selenium Server

Results 18 webdriverxx issues
Sort by recently updated
recently updated
newest added

I tried this program on Ubuntu 22.04: ```cpp #include "webdriverxx.h" using namespace webdriverxx; int main() { FirefoxOptions opts; WebDriver browser = Start(Firefox()); browser.Navigate("https://duckduckgo.org"); Element elem = browser.FindElement(ByCss("input[name=q]")); elem.SendKeys("sha512 helloworld"); elem.Submit();...

after starting the server and running the executable after opening firefox it crashes unexpectedly, reporting this error: I had these error: `libc++abi: terminating with uncaught exception of type webdriverxx::WebDriverException: HTTP...

The src directory cannot be found.

`std::string` initialization from `nullptr` is not allowed in `C++23`. Please change `nullptr` to empty C-string or whatever. https://github.com/GermanAizek/webdriverxx/blob/b8c9ac36360021daca7b0fd006a092b605b19e29/include/webdriverxx/by.h#L11

Hi evrybody, An exception is thrown during a start for chrome. The session is created, chrome opened and closed instantly. And finaly an exception is thrown during the execution of...

Hello, There are exceptions while running the sample code with selenium-server-4.8.1 and selenium-server-4.0.0.. While there is no exceptions from https://github.com/durdyev/webdriverxx . java -jar selenium-server-4.8.1.jar standalone -p 4444 & java -jar...

Run `WebDriver browser = Start(Edge());` will throw an exception, "JSON parser error (syntax error at line 1 near: ) at line 179, file D:\迅雷下载\Develope\webdriverxx\src\include\webdriverxx\detail\resource.h called from webdriverxx::detail::Resource::ProcessResponse (HTTP code: 503,...

Any suggestions how to bypass cloudflare??

Hi, I want to perform something like this; driver.execute_cdp_cmd( 'Network.setCookie', { 'domain': 'chat.openai.com', 'path': '/', 'name': '__Secure-next-auth.session-token', 'value': self.__session_token, 'httpOnly': True, 'secure': True, }, ) Can we do it using...