capybara_simple_emailer 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/Gemfile +7 -0
- data/README.md +35 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/capybara_simple_emailer.gemspec +24 -0
- data/lib/capybara_simple_emailer/version.rb +3 -0
- data/lib/capybara_simple_emailer.rb +45 -0
- metadata +96 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
Y2RmNjA5NTJlMjQxYTYyNWI5N2UyMGY3ZTdkOWYyOWNkNzIzN2FlNQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
NGU4Mjk2ZTI5MDUzODQwZTE5M2QzYTIxNDU3YjdmZmFjYmU1MGUwNw==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
OGMwOTIwMTg3ZjRjOTNlOTA2MzJkZjk1Yjc2MzU2NWJiMTI0ZmU3MjNhNDI4
|
10
|
+
YzczYjAzNzgxNzM0YWE2NjY4OTc2ZWUwZjA4MTkyNDY4Y2U4NTkyMjY2NTdh
|
11
|
+
MjMzODc2OGQzZDY0ZTg2MzZiYjYwMGI2Mzg1ZjYwMDg2ODcxZDM=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
N2Q3OTA4OWNlNjJmODNiMDdjODdiOGVmNDM5N2RjNmE0MTk1MGQ2MjM0NWM5
|
14
|
+
OWM3YzI4NDQ3MDRjYTY2NzJlODk0NTkyZTY4NGVhNWM1ZWQyYjMxNTVkYjYz
|
15
|
+
NTI4YzUxNWY1YTUzMzhiYzgyM2QyMjE4Yjk4NGI0MWFkZjgyNzA=
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# CapybaraSimpleEmailer
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/mailer`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'capybara_simple_emailer'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install capybara_simple_emailer
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
params = {
|
27
|
+
from:"from.test.user@gmail.com",
|
28
|
+
pass:"testuser123",
|
29
|
+
to:"to.test.user1@gmail.com",
|
30
|
+
theme:"test.theme",
|
31
|
+
message:"test.message"
|
32
|
+
}
|
33
|
+
obj = CapybaraSimpleEmailer.new
|
34
|
+
obj.send_message(params)
|
35
|
+
```
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "capybara_simple_emailer"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'capybara_simple_emailer/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "capybara_simple_emailer"
|
8
|
+
spec.version = CapybaraSimpleEmailer::VERSION
|
9
|
+
spec.authors = ["Andriy Nasadchuk"]
|
10
|
+
spec.email = ["andriy.nasa@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Send test messages to google emails via capybara}
|
13
|
+
spec.description = %q{Send test messages to google emails via capybara}
|
14
|
+
spec.homepage = ""
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
+
spec.bindir = "exe"
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
spec.add_development_dependency "rspec"
|
24
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require "capybara_simple_emailer/version"
|
2
|
+
require "capybara"
|
3
|
+
require "capybara/dsl"
|
4
|
+
|
5
|
+
class CapybaraSimpleEmailer
|
6
|
+
include Capybara::DSL
|
7
|
+
Capybara.run_server = false
|
8
|
+
Capybara.current_driver = :selenium
|
9
|
+
Capybara.default_wait_time = 10
|
10
|
+
Capybara.app_host = 'https://mail.google.com'
|
11
|
+
|
12
|
+
# Send message from GMAIL account via capybara!
|
13
|
+
#
|
14
|
+
# Example:
|
15
|
+
# params = {
|
16
|
+
# from:"from.test.user@gmail.com",
|
17
|
+
# pass:"testuser123",
|
18
|
+
# to:"to.test.user1@gmail.com",
|
19
|
+
# theme:"test.theme",
|
20
|
+
# message:"test.message"
|
21
|
+
# }
|
22
|
+
# >> CapybaraSimpleEmailer.new.send_message(params)
|
23
|
+
#
|
24
|
+
# Arguments:
|
25
|
+
# params: (Hash)
|
26
|
+
# * required keys - from:, pass:, to:, theme:, message:
|
27
|
+
def send_message(params)
|
28
|
+
begin
|
29
|
+
visit('/')
|
30
|
+
fill_in 'Email', with: params[:from]
|
31
|
+
find("#next").click
|
32
|
+
fill_in 'Password', with: params[:pass]
|
33
|
+
find("#signIn").click
|
34
|
+
find('.T-I-KE.L3').click
|
35
|
+
find('.GS textarea').set(params[:to])
|
36
|
+
find('.aoT').set(params[:theme])
|
37
|
+
find('.GP').click
|
38
|
+
find('.Am.Al.editable').set(params[:message])
|
39
|
+
find('.T-I-atl.L3').click
|
40
|
+
return "Done"
|
41
|
+
rescue
|
42
|
+
return "Error"
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: capybara_simple_emailer
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Andriy Nasadchuk
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-11-10 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.10'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.10'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ! '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Send test messages to google emails via capybara
|
56
|
+
email:
|
57
|
+
- andriy.nasa@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- .gitignore
|
63
|
+
- .rspec
|
64
|
+
- .travis.yml
|
65
|
+
- Gemfile
|
66
|
+
- README.md
|
67
|
+
- Rakefile
|
68
|
+
- bin/console
|
69
|
+
- bin/setup
|
70
|
+
- capybara_simple_emailer.gemspec
|
71
|
+
- lib/capybara_simple_emailer.rb
|
72
|
+
- lib/capybara_simple_emailer/version.rb
|
73
|
+
homepage: ''
|
74
|
+
licenses: []
|
75
|
+
metadata: {}
|
76
|
+
post_install_message:
|
77
|
+
rdoc_options: []
|
78
|
+
require_paths:
|
79
|
+
- lib
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ! '>='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ! '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
requirements: []
|
91
|
+
rubyforge_project:
|
92
|
+
rubygems_version: 2.4.8
|
93
|
+
signing_key:
|
94
|
+
specification_version: 4
|
95
|
+
summary: Send test messages to google emails via capybara
|
96
|
+
test_files: []
|