Skip to content

Instantly share code, notes, and snippets.

View TriplEight's full-sized avatar
🪲

Denis Pisarev TriplEight

🪲
View GitHub Profile
# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
SEARCH_XPATH = '//*[@name="q"]'
# WIKI_XPATH = '//h3//*[@href="https://ru.wikipedia.org/wiki/QA"]'
WIKI_XPATH = '//h3//*[@href="https://en.wikipedia.org/wiki/Quality_assurance"]'
WIKI_LOGO_XPATH = '//*[@class="mw-wiki-logo"]'
@TriplEight
TriplEight / strings.xml
Created April 24, 2016 20:28 — forked from udacityandroid/strings.xml
Android for Beginners : Spanish Localization Solution. This would be saved in the res/values-es/strings.xml file.
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Title for the application. [CHAR LIMIT=12] -->
<string name="app_name">Sólo Java</string>
<!-- Hint text display in the empty field for the user's name [CHAR LIMIT=20] -->
<string name="name">Nombre</string>
<!-- Hint text display in the empty field for the user's name [CHAR LIMIT=20] -->
<string name="toppings">Ingredientes</string>