y-yagi

Results 37 issues of y-yagi

#109 supported billy, but only added poltergeist driver. This patch supports more drivers(related with selenium). Ref: https://github.com/oesmith/puffing-billy/blob/fc12d19cfa27182463c5c300acacd517a557d339/lib/billy/browsers/capybara.rb#L48-L96

`URI.regexp` is obsolete now. ``` $ ruby -w -e 'require "net/http"; URI.regexp' -e:1: warning: URI.regexp is obsolete ``` This changed to use `URI::DEFAULT_PARSER.make_regexp` that use inside `URI.regexp` instead of `URI.regexp`....

Because `x/crypto/ssh/terminal` is deprecated and moved to `x/term`. https://pkg.go.dev/golang.org/x/crypto/ssh/terminal#pkg-overview

## Description Currently, `delegatable?` call `private_methods` to check method is private or not. The `private_methods` generates an Array of methods per call. So a method call via `delegate_all` generates an...

`debug` method access the DevTools discovery page. But the page is deprecated now. ![Screenshot from 2021-09-03 10-24-32](https://user-images.githubusercontent.com/987638/131936521-52fd8c46-57e1-4f06-be9f-45ec0deffd7e.png) Ref: https://bugs.chromium.org/p/chromium/issues/detail?id=1232509 They suggest to use `chrome://inspect` instead. But, if my understanding is...

This is a fix for the same purpose as #246. Because the original PR is inactive, I made a PR. If the original author is motivated, please feel free to...

**Describe the bug** I tried to use Self-signed SSL certificates. But it seems that doesn't work in Cluster mode. **To Reproduce** ```ruby # config.ru require "localhost" run proc { [200,...

bug
contrib-wanted
ssl

`File.exists?` is deprecated in Ruby 2.1+. https://github.com/ruby/ruby/blob/faba7187c5e659d7a6da67ec844c4989fc74a8d5/file.c#L1413

Chrome allows to specify file scheme to an URL. When a non-existent file is specified, Chrome returns `ERR_CONNECTION_TIMED_OUT`. But `ferrum` doesn't handle that error. So in that case, an error...

Go modules folder is protected. So you need to clean the mod cache first when the mod cache data exists. This added a message to solve that situation. Related to...