├── README.md └── tests ├── Git └── comandos_git.md ├── Bundler ├── 01-introducao_bundler.md ├── 02-opcoes_extras_bundle_install.md ├── 03-opcoes_extras_bundle_update.md ├── 04-comandos_extras_bundle_config.md └── comandos_bundler.md ├── Calabash └── comandos_calabash.md ├── Capybara ├── 01-introducao.md ├── 02-instalando_drivers.md ├── 03-configurando_projeto.md ├── 04-acessando_url.md ├── 05-buscando_elementos.md ├── 06-realizando_acoes.md ├── 07-validando_elementos.md ├── 08-validacoes_com_rspec_matchers.md ├── 09-janelas_modal_alerts_iframe.md ├── 10-metodos_screenshots.md ├── 11-comandos_javascript.md ├── capybara.md └── comandos_capybara.md ├── CircleCi └── comandos_circleci.md ├── Codeship └── comandos_codeship.md ├── ConfiguracaoAndroid ├── configuracao_android.md ├── configuracao_android_linux.md ├── configuracao_android_mac.md └── configuracao_android_windows.md ├── ConfiguracaoRuby ├── configuracao_ruby.md ├── instalando_ruby_linux.md ├── instalando_ruby_mac.md └── instalando_ruby_windows.md ├── Cucumber ├── 01-introducao_cucumber.md ├── 02-instalacao_cucumber.md ├── 03-given_when_then_but_and.md ├── 04-background.md ├── 05-hooks.md ├── 06-chamando_steps.md ├── 07-esquema_cenario.md ├── 08-tags.md ├── 09-data_table.md ├── 10-cucumberyml.md └── comandos_cucumber.md ├── Docker └── comandos_docker.md ├── Gitlabci └── comandos_gitlabci.md ├── Httparty └── comandos_httparty.md ├── Jenkins └── comandos_jenkins.md ├── JsonSchema └── comandos_json_schema.md ├── Rake └── comandos_rake.md ├── Rspec └── comandos_rspec.md ├── Ruby ├── RubyBasico │ ├── 01-hello_world.md │ ├── 02-entrada_e_saida.md │ ├── 03-variaveis_e_primitivos.md │ ├── 04-comentarios.md │ ├── 05-string_e_interpolacao.md │ ├── 06-coercao.md │ ├── 07-operadores_aritimeticos.md │ ├── 08-operadores_relacionais.md │ ├── 09-operador_de_atribuicao.md │ ├── 10-estruturas_condicionais.md │ ├── 11-operadores_logicos.md │ ├── 12-estrutura_de_repeticao.md │ ├── 13-vetores_e_arrays.md │ ├── 14-hashes.md │ ├── 15-simbolos.md │ ├── 16-iterador_each.md │ └── 17-operadores_de_intervalo.md ├── RubyOrientadoObjeto │ ├── 01-classe.md │ ├── 02-metodos.md │ ├── 03-definindo_atributos.md │ ├── 04-initialize.md │ ├── 05-herança.md │ ├── aula10.md │ ├── aula11.md │ ├── aula12.md │ ├── aula13.md │ ├── aula14.md │ ├── aula6.md │ ├── aula7.md │ ├── aula8.md │ └── aula9.md └── comandos_ruby.md ├── SeleniumWebdriver └── comandos_selenium_webdriver.md ├── SitePrism ├── 01-introducao.md ├── 02-instalando_siteprism.md ├── 03-setando_urls.md ├── 04-elementos.md ├── 05-lista_de_elementos.md ├── 06-ajax.md ├── 07-sessoes.md ├── 08-iframe.md ├── 09-melhorando_pageobjects.md └── comandos_siteprism.md ├── Travisci └── comandos_travis.md ├── Watir └── comandos_watir.md └── apks ├── PreciseUnitConversion.apk ├── TrianguloApp.apk ├── calculadora.apk ├── com.orgzly_60.apk ├── org.wikipedia_2.5.195-r-2017-04-21-195_minAPI16(arm64-v8a,armeabi,armeabi-v7a,mips,x86,x86_64)(nodpi)_apkmirror.com.apk └── teste.apk /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/README.md -------------------------------------------------------------------------------- /tests/ Git/comandos_git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/ Git/comandos_git.md -------------------------------------------------------------------------------- /tests/Bundler/01-introducao_bundler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Bundler/01-introducao_bundler.md -------------------------------------------------------------------------------- /tests/Bundler/02-opcoes_extras_bundle_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Bundler/02-opcoes_extras_bundle_install.md -------------------------------------------------------------------------------- /tests/Bundler/03-opcoes_extras_bundle_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Bundler/03-opcoes_extras_bundle_update.md -------------------------------------------------------------------------------- /tests/Bundler/04-comandos_extras_bundle_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Bundler/04-comandos_extras_bundle_config.md -------------------------------------------------------------------------------- /tests/Bundler/comandos_bundler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Bundler/comandos_bundler.md -------------------------------------------------------------------------------- /tests/Calabash/comandos_calabash.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Capybara/01-introducao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/01-introducao.md -------------------------------------------------------------------------------- /tests/Capybara/02-instalando_drivers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/02-instalando_drivers.md -------------------------------------------------------------------------------- /tests/Capybara/03-configurando_projeto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/03-configurando_projeto.md -------------------------------------------------------------------------------- /tests/Capybara/04-acessando_url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/04-acessando_url.md -------------------------------------------------------------------------------- /tests/Capybara/05-buscando_elementos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/05-buscando_elementos.md -------------------------------------------------------------------------------- /tests/Capybara/06-realizando_acoes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/06-realizando_acoes.md -------------------------------------------------------------------------------- /tests/Capybara/07-validando_elementos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/07-validando_elementos.md -------------------------------------------------------------------------------- /tests/Capybara/08-validacoes_com_rspec_matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/08-validacoes_com_rspec_matchers.md -------------------------------------------------------------------------------- /tests/Capybara/09-janelas_modal_alerts_iframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/09-janelas_modal_alerts_iframe.md -------------------------------------------------------------------------------- /tests/Capybara/10-metodos_screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/10-metodos_screenshots.md -------------------------------------------------------------------------------- /tests/Capybara/11-comandos_javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/11-comandos_javascript.md -------------------------------------------------------------------------------- /tests/Capybara/capybara.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/capybara.md -------------------------------------------------------------------------------- /tests/Capybara/comandos_capybara.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Capybara/comandos_capybara.md -------------------------------------------------------------------------------- /tests/CircleCi/comandos_circleci.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Codeship/comandos_codeship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Codeship/comandos_codeship.md -------------------------------------------------------------------------------- /tests/ConfiguracaoAndroid/configuracao_android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/ConfiguracaoAndroid/configuracao_android.md -------------------------------------------------------------------------------- /tests/ConfiguracaoAndroid/configuracao_android_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/ConfiguracaoAndroid/configuracao_android_linux.md -------------------------------------------------------------------------------- /tests/ConfiguracaoAndroid/configuracao_android_mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/ConfiguracaoAndroid/configuracao_android_mac.md -------------------------------------------------------------------------------- /tests/ConfiguracaoAndroid/configuracao_android_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/ConfiguracaoAndroid/configuracao_android_windows.md -------------------------------------------------------------------------------- /tests/ConfiguracaoRuby/configuracao_ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/ConfiguracaoRuby/configuracao_ruby.md -------------------------------------------------------------------------------- /tests/ConfiguracaoRuby/instalando_ruby_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/ConfiguracaoRuby/instalando_ruby_linux.md -------------------------------------------------------------------------------- /tests/ConfiguracaoRuby/instalando_ruby_mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/ConfiguracaoRuby/instalando_ruby_mac.md -------------------------------------------------------------------------------- /tests/ConfiguracaoRuby/instalando_ruby_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/ConfiguracaoRuby/instalando_ruby_windows.md -------------------------------------------------------------------------------- /tests/Cucumber/01-introducao_cucumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Cucumber/01-introducao_cucumber.md -------------------------------------------------------------------------------- /tests/Cucumber/02-instalacao_cucumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Cucumber/02-instalacao_cucumber.md -------------------------------------------------------------------------------- /tests/Cucumber/03-given_when_then_but_and.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Cucumber/03-given_when_then_but_and.md -------------------------------------------------------------------------------- /tests/Cucumber/04-background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Cucumber/04-background.md -------------------------------------------------------------------------------- /tests/Cucumber/05-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Cucumber/05-hooks.md -------------------------------------------------------------------------------- /tests/Cucumber/06-chamando_steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Cucumber/06-chamando_steps.md -------------------------------------------------------------------------------- /tests/Cucumber/07-esquema_cenario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Cucumber/07-esquema_cenario.md -------------------------------------------------------------------------------- /tests/Cucumber/08-tags.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Cucumber/09-data_table.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Cucumber/10-cucumberyml.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Cucumber/comandos_cucumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Cucumber/comandos_cucumber.md -------------------------------------------------------------------------------- /tests/Docker/comandos_docker.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Gitlabci/comandos_gitlabci.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Httparty/comandos_httparty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Httparty/comandos_httparty.md -------------------------------------------------------------------------------- /tests/Jenkins/comandos_jenkins.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/JsonSchema/comandos_json_schema.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Rake/comandos_rake.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Rspec/comandos_rspec.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/01-hello_world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/01-hello_world.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/02-entrada_e_saida.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/02-entrada_e_saida.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/03-variaveis_e_primitivos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/03-variaveis_e_primitivos.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/04-comentarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/04-comentarios.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/05-string_e_interpolacao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/05-string_e_interpolacao.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/06-coercao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/06-coercao.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/07-operadores_aritimeticos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/07-operadores_aritimeticos.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/08-operadores_relacionais.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/08-operadores_relacionais.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/09-operador_de_atribuicao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/09-operador_de_atribuicao.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/10-estruturas_condicionais.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/10-estruturas_condicionais.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/11-operadores_logicos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/11-operadores_logicos.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/12-estrutura_de_repeticao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/12-estrutura_de_repeticao.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/13-vetores_e_arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/13-vetores_e_arrays.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/14-hashes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/14-hashes.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/15-simbolos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/15-simbolos.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/16-iterador_each.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/16-iterador_each.md -------------------------------------------------------------------------------- /tests/Ruby/RubyBasico/17-operadores_de_intervalo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyBasico/17-operadores_de_intervalo.md -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/01-classe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyOrientadoObjeto/01-classe.md -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/02-metodos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyOrientadoObjeto/02-metodos.md -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/03-definindo_atributos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyOrientadoObjeto/03-definindo_atributos.md -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/04-initialize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyOrientadoObjeto/04-initialize.md -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/05-herança.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/RubyOrientadoObjeto/05-herança.md -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/aula10.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/aula11.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/aula12.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/aula13.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/aula14.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/aula6.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/aula7.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/aula8.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Ruby/RubyOrientadoObjeto/aula9.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Ruby/comandos_ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Ruby/comandos_ruby.md -------------------------------------------------------------------------------- /tests/SeleniumWebdriver/comandos_selenium_webdriver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/SeleniumWebdriver/comandos_selenium_webdriver.md -------------------------------------------------------------------------------- /tests/SitePrism/01-introducao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/SitePrism/01-introducao.md -------------------------------------------------------------------------------- /tests/SitePrism/02-instalando_siteprism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/SitePrism/02-instalando_siteprism.md -------------------------------------------------------------------------------- /tests/SitePrism/03-setando_urls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/SitePrism/03-setando_urls.md -------------------------------------------------------------------------------- /tests/SitePrism/04-elementos.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/SitePrism/05-lista_de_elementos.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/SitePrism/06-ajax.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/SitePrism/07-sessoes.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/SitePrism/08-iframe.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/SitePrism/09-melhorando_pageobjects.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/SitePrism/comandos_siteprism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/SitePrism/comandos_siteprism.md -------------------------------------------------------------------------------- /tests/Travisci/comandos_travis.md: -------------------------------------------------------------------------------- 1 | EM BREVE... -------------------------------------------------------------------------------- /tests/Watir/comandos_watir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/Watir/comandos_watir.md -------------------------------------------------------------------------------- /tests/apks/PreciseUnitConversion.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/apks/PreciseUnitConversion.apk -------------------------------------------------------------------------------- /tests/apks/TrianguloApp.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/apks/TrianguloApp.apk -------------------------------------------------------------------------------- /tests/apks/calculadora.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/apks/calculadora.apk -------------------------------------------------------------------------------- /tests/apks/com.orgzly_60.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/apks/com.orgzly_60.apk -------------------------------------------------------------------------------- /tests/apks/org.wikipedia_2.5.195-r-2017-04-21-195_minAPI16(arm64-v8a,armeabi,armeabi-v7a,mips,x86,x86_64)(nodpi)_apkmirror.com.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/apks/org.wikipedia_2.5.195-r-2017-04-21-195_minAPI16(arm64-v8a,armeabi,armeabi-v7a,mips,x86,x86_64)(nodpi)_apkmirror.com.apk -------------------------------------------------------------------------------- /tests/apks/teste.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunobatista25/best_archer/HEAD/tests/apks/teste.apk --------------------------------------------------------------------------------