This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nombre | name | nom | iso2 | iso3 | phone_code | |
---|---|---|---|---|---|---|
Afganistán | Afghanistan | Afghanistan | AF | AFG | 93 | |
Albania | Albania | Albanie | AL | ALB | 355 | |
Alemania | Germany | Allemagne | DE | DEU | 49 | |
Algeria | Algeria | Algérie | DZ | DZA | 213 | |
Andorra | Andorra | Andorra | AD | AND | 376 | |
Angola | Angola | Angola | AO | AGO | 244 | |
Anguila | Anguilla | Anguilla | AI | AIA | 1 264 | |
Antártida | Antarctica | L'Antarctique | AQ | ATA | 672 | |
Antigua y Barbuda | Antigua and Barbuda | Antigua et Barbuda | AG | ATG | 1 268 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using OpenQA.Selenium; | |
using OpenQA.Selenium.Chrome; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Verifica si un elemento existe en la página web. | |
/// </summary> | |
/// <param name="wdriver"> | |
/// Instancia de Web Driver. | |
/// </param> | |
/// <param name="buscarPor"> | |
/// Mecanismo de búsqueda. | |
/// </param> | |
/// <returns> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Microsoft.VisualStudio.TestTools.UnitTesting; | |
using OpenQA.Selenium; | |
using OpenQA.Selenium.Chrome; | |
using System.Threading; | |
namespace PruebaSelenium | |
{ | |
[TestClass] | |
public class UnitTest1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using OfficeOpenXml; | |
using System.IO; | |
namespace ImportarDesdeExcel | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" /> | |
<title>Ejemplo de panel de carga</title> | |
<link href="estilos.css" type="text/css" rel="stylesheet" /> | |
<script src="codigo.js" type="text/javascript"></script> | |
</head> | |
<body> | |
<div id="area_invalidar" class="clase_area_invalidar"> | |
<div id="panel_carga" class="clase_panel_carga"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#contenido_derecha | |
{ | |
padding: 10px; | |
overflow: hidden; | |
} | |
#area_invalidar | |
{ | |
float: left; | |
border-style: solid; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function procesar(idPanelCarga) | |
{ | |
//Obtener referencia a DIV de panel de carga | |
var panelCarga = document.getElementById(idPanelCarga); | |
//Mostrar DIV de panel de carga | |
panelCarga.style.visibility = "visible"; | |
//Ocultar DIV de panel de carga, después de 5 segundos | |
setTimeout(function() { panelCarga.style.visibility = "hidden"; }, 5000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Web; | |
namespace MiProyectoMVC.Extensiones | |
{ | |
public static class HttpRequestExtensions | |
{ | |
public static bool IsAjaxRequest(this HttpRequest request) | |
{ | |
if (request == null) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web.Mvc; | |
using MiProyectoMVC.Extensiones; | |
namespace MiProyectoMVC.Controllers.Atributos | |
{ | |
public class XmlHttpRequestAttribute : ActionFilterAttribute | |
{ |
OlderNewer