.model tiny
.code
ORG 100h
begin:
MOV AH, 9 ; Функция вывода строки на экран
MOV DX, OFFSET Msg ; Адрес строки
INT 21h ; Выполнить функцию
RET ; Вернуться в операционную систему
Msg DB 'Hello, World!!!$' ; Строка для вывода
END begin
print(hello world)
такasync public Task getCategories()
{
IList<IWebElement> allElements = driver.FindElements(By.XPath("//*[@id=\"app\"]/div/div[2]/div[2]/div[1]/div[1]/div[1]/div[3]/div/ul/li"));
List<string> categories = new List<string>() { "Рубрика" };
foreach (IWebElement c in allElements)
{
categories.Add(c.Text);
}
Categories.Items = categories;
}
<ComboBox Name="Categories" Margin="10, 10, 0, 0" Width="250" SelectedIndex="0"></ComboBox>
elasticsearch.exceptions.ConnectionError: ConnectionError(('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))) caused by: ProtocolError(('Connection aborted.', RemoteDisconnected('Remote end closed connection without response')))