This file contains hidden or 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
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT | |
sda 8:0 0 465.8G 0 disk | |
├─sda1 8:1 0 600M 0 part | |
├─sda2 8:2 0 300M 0 part /boot | |
├─sda3 8:3 0 128M 0 part | |
├─sda4 8:4 0 100G 0 part | |
├─sda5 8:5 0 16.8G 0 part | |
├─sda6 8:6 0 18.2G 0 part / | |
├─sda7 8:7 0 304.7G 0 part | |
├─sda8 8:8 0 7.6G 0 part [SWAP] |
This file contains hidden or 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
# | |
# /etc/fstab: static file system information | |
# | |
# <file system> <dir> <type> <options> <dump> <pass> | |
# /dev/sda6 | |
UUID=f2c1dc5b-17a1-42e5-afcd-79ce25295c61 / ext4 rw,relatime,data=ordered 0 1 | |
# /dev/sda2 LABEL=ESP | |
UUID=9016-E4DE /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2 |
This file contains hidden or 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
[ 2.820] | |
X.Org X Server 1.17.1 | |
Release Date: 2015-02-10 | |
[ 2.820] X Protocol Version 11, Revision 0 | |
[ 2.820] Build Operating System: Linux 3.19.2-1-ARCH x86_64 | |
[ 2.820] Current Operating System: Linux Espectro 4.0.4-2-ARCH #1 SMP PREEMPT Fri May 22 03:05:23 UTC 2015 x86_64 | |
[ 2.820] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=1e048bd0-a978-4316-9150-e0f507218b40 rw quiet | |
[ 2.820] Build Date: 14 April 2015 10:34:18AM | |
[ 2.820] | |
[ 2.820] Current version of pixman: 0.32.6 |
This file contains hidden or 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
Traza a la dirección elmundo.com [200.13.246.102] | |
sobre un máximo de 30 saltos: | |
1 <1 ms <1 ms <1 ms Sleipnir.lan [192.168.1.1] | |
2 2 ms 1 ms 1 ms 192.168.144.1 | |
3 2 ms 2 ms 2 ms 161.Red-80-58-118.staticIP.rima-tde.net [80.58.118.161] | |
4 3 ms 2 ms 3 ms 86.Red-81-46-8.staticIP.rima-tde.net [81.46.8.86] | |
5 1 ms 2 ms 2 ms 216.184.112.16.nuevatel.com [216.184.112.16] | |
6 35 ms 24 ms 106 ms xe2-1-8-0-grtparix3.net.telefonicaglobalsolutions.com [94.142.117.178] | |
7 118 ms * 104 ms xe6-0-8-0-grtwaseq2.red.telefonica-wholesale.net [94.142.116.205] |
This file contains hidden or 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
Settings.MoveMouseDelay = 0 | |
Settings.ClickDelay = 250 | |
#Settings.WaitScanRate = 0.5 | |
#Settings.ObserveScanRate = 0.250 | |
#Settings.MinSimilarity = 0.75 | |
# using an existing window if possible | |
#ro = App("Ragnarok Online Island | Gepard Shield 3.0 (^-_-^)") | |
#ro = App("Ragnarok Online Island") | |
ro = App("ragexe_island.exe") | |
ro.window() |
This file contains hidden or 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
Settings.MoveMouseDelay = 0 | |
Settings.ClickDelay = 250 | |
#Settings.WaitScanRate = 0.5 | |
#Settings.ObserveScanRate = 0.250 | |
#Settings.MinSimilarity = 0.75 | |
# using an existing window if possible | |
#ro = App("Ragnarok Online Island | Gepard Shield 3.0 (^-_-^)") | |
#ro = App("Ragnarok Online Island") | |
ro = App("ragexe_island.exe") | |
ro.window() |
This file contains hidden or 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
static void _FindingElement(object sender, FindElementEventArgs e) | |
{ | |
wait.Timeout = TimeSpan.FromSeconds(30); | |
wait.PollingInterval = TimeSpan.FromMilliseconds(500); | |
wait.IgnoreExceptionTypes(typeof(NoSuchElementException)); | |
wait.Message = "El Spinner ha tardado demasiado en cargar"; | |
wait.Until(d => | |
{ | |
bool bool1, bool2, bool3; |
This file contains hidden or 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
public void Seleccionar_Persona(string nombrePersona) | |
{ | |
//SeleniumHelper.WebDriverWait.Until(d => TablaDestinatarios.Enabled); | |
SeleniumHelper.Click(SeleniumHelper.GetWebDriver().FindElement(By.XPath("//input[contains(@data-nombre, '" + nombrePersona + "')]"))); | |
} |
This file contains hidden or 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 Microsoft.VisualStudio.TestTools.UnitTesting; | |
using OpenQA.Selenium; | |
using OpenQA.Selenium.Support.Events; | |
using OpenQA.Selenium.Support.UI; | |
using System; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Threading; | |
namespace InfraestructureSelenium.Helper |
This file contains hidden or 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
public static RemoteWebDriver GenerarRemotoChromeDriver() | |
{ | |
//DesiredCapabilities capability = DesiredCapabilities.Chrome(); | |
var chromeOptions = new ChromeOptions(); | |
chromeOptions.AddArguments("no-sandbox"); | |
chromeOptions.AddArguments("disable-infobars"); | |
chromeOptions.AddArguments("disable-notifications"); | |
chromeOptions.AddArguments("--start-maximized"); | |
chromeOptions.AddUserProfilePreference("profile.default_content_settings.popups", 0); |
OlderNewer