Antônio Sousa

Results 10 comments of Antônio Sousa

### POM ```xml org.seleniumhq.selenium selenium-java 4.19.1 org.seleniumhq.selenium selenium-chrome-driver 4.19.1 ``` ### CODE ```java ChromeOptions options = new ChromeOptions(); options.setBinary("/bin/google-chrome-stable"); WebDriver driver = new ChromeDriver(options); driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(10)); driver.get("https://google.com"); ``` with just that...

```xml 4.0.0 com.westsidedev AvisoBZ_bot 6.0 AvisoBZ_bot http://www.example.com UTF-8 1.7 1.7 junit junit 4.11 test org.seleniumhq.selenium selenium-java 4.19.1 org.seleniumhq.selenium selenium-chrome-driver 4.19.1 maven-assembly-plugin com.westsidedev.avisobz.App jar-with-dependencies AvisoBZ_bot-6.0 false default-jar package single ```

if I remove `options.setBinary("/bin/google-chrome-stable");` it opens the Chrome test but still gives me this warning, running it with `mvn test` it passes and doesn't give me any warning but when...

Well, a temporary solution I found was to set the log to severe ```java Logger.getLogger(CdpVersionFinder.class.getName()).setLevel(Level.SEVERE); ```

@joerg1985 Both codes returned 1 element, so I did a forEach and it returned `org.openqa.selenium.devtools.v122.v122CdpInfo` In the test he passed and showed the 4 elements ``` org.openqa.selenium.devtools.v121.v121CdpInfo org.openqa.selenium.devtools.v122.v122CdpInfo org.openqa.selenium.devtools.v123.v123CdpInfo org.openqa.selenium.devtools.v85.V85CdpInfo...

@joerg1985 I did what you said, I changed from 1.7 to 17 but it's still the same thing, for now setting the log to severe worked

@androiddisk consider using [litcrypt](https://github.com/anvie/litcrypt.rs), I'm using this to protect critical strings

@grelner Did you manage to use selenoid with thirtyfour?

I have same problem bro