Телеграм канал 'QA Community'

QA Community


4'320 подписчиков
765 просмотров на пост

You can find it here:
- news
- real cases
- meetups and talks
- internship programs
- and sparkling humor

Cooperation: @evgeniybryk

FB channel: https://www.facebook.com/people/QA-Community/100086298857628

Детальная рекламная статистика будет доступна после прохождения простой процедуры регистрации


Что это дает?
  • Детальная аналитика 5'634'426 каналов
  • Доступ к 1'533'798'153 рекламных постов
  • Поиск по 4'994'787'747 постам
  • Отдача с каждой купленной рекламы
  • Графики динамики изменения показателей канала
  • Где и как размещался канал
  • Детальная статистика по подпискам и отпискам
Telemetr.me

Telemetr.me Подписаться

Аналитика телеграм-каналов - обновления инструмента, новости рынка.

Найдено 674 поста

ANDERSEN TRAINEE
: 15'485 | на пост: 0 | ER: 0%
Публикации Упоминания Аналитика

#recruitment

Hello, friends!👋
Andersen announces recruitment for the QA MANUAL Trainee.

Locations
*:
- Krakow, Warsaw, Wroclaw 🇵🇱
- Budapest🇭🇺
- Batumi, Tbilisi🇬🇪
- Almaty 🇰🇿
- Cherkasy, Chernihiv, Dnipro 🇺🇦
- Bangalore 🇮🇳

Requirements:
📌ENGLISH level Intermediate or higher (spoken communication);
📌good knowledge of testing theory;
📌understanding of SQL;
📌understanding of WEB / Mobile apps;
📌work experience is not required;

Will be a plus:
📌technical background, any experience in programming, completed courses in testing area;
📌GERMAN level Intermediate or higher (spoken communication). area.

⭐️Guaranteed employment upon successful completion of training.

✉️If you are interested in an internship at the international company Andersen, we kindly ask you to fill in the ong>FORM and follow the directions that will be sent to your email specified in the form.

Andersen is a great opportunity for your start and growth in IT🕊

Изображение
LLMs to write selenium for automated web actions🤯

LaVague is an open-source project designed to automate menial tasks on behalf of its users. Many of these tasks are repetitive, time-consuming, and require little to no cognitive effort. By automating these tasks, LaVague aims to free up time for more meaningful endeavors, allowing users to focus on what truly matters to them.

By providing an engine turning natural language queries into Selenium code, LaVague is designed to make it easy for users or other AIs to automate easily express web workflows and execute them on a browser.

One of the key usages we see is to automate tasks that are personal to users and require them to be logged in, for instance automating the process of paying bills, filling out forms or pulling data from specific websites.

⬇️📚 Docs 📚⬇️
- https://docs.lavague.ai/en/latest/docs/integrations/hugging-face-api/
- https://github.com/lavague-ai/LaVague
Видео/гифка, 24 сек, telegram-cloud-document-2-5197227624379727404.mp4
UNTANGLE Spring Security Architecture 🔒

Authentication and Authorization:
- Validates user identity and orchestrates controlled resource access.
- Empowers comprehensive user authentication and nuanced authorization.

Security Filters:
- Intercepts incoming requests, meticulously enforcing security measures.
- Offers a flexible, layered security filter chain for diverse protection strategies.

Custom Authentication Providers:
- N Authentication Provider: Extends authentication capabilities beyond default configurations. Facilitates tailored authentication strategies and seamless integration.
- DaoAuthentication Provider: Adopts a database-backed approach for user authentication. Scrutinizes user credentials against stored records, heightening security.

Authentication Manager:
- Orchestrates the authentication process, coordinating various authentication providers.
- Serves as a pivotal component in managing user identity verification.

Token-based Security (JWT):
- Implements advanced token-based authentication for stateless communication.
- Facilitates secure interaction without the need for server-side storage.

Session Management:
- Efficiently manages user sessions, mitigating session-related risks.
- Provides adaptability for session creation, tracking, and invalidation.

Authentication Tokens:
- Username Password Authentication Token:Represents user credentials for authentication purposes.
- Leverages usernames and passwords for robust user verification.

Add/Remove Authentication Token:
- Dynamically enables the addition and removal of authentication tokens.
- Ensures real-time control over user authentication, promoting flexibility.
Видео/гифка, 8 сек, telegram-cloud-document-2-5415848890039552157.mp4

𝗚𝗶𝘁 𝗠𝗲𝗿𝗴𝗲 𝘃𝘀 𝗥𝗲𝗯𝗮𝘀𝗲

One of the most powerful Git features is branching. Yet, while working with it, we must integrate changes from one branch into another. The way how to do this can be different.

We have two ways to do it:

𝟭. 𝗠𝗲𝗿𝗴𝗲

When you merge Branch A into Branch B (with 𝚐𝚒𝚝 𝚖𝚎𝚛𝚐𝚎), Git creates a new merge commit. This commit has two parents, one from each branch, symbolizing the confluence of histories. It's a non-destructive operation, preserving the exact history of your project, warts, and all. Merges are particularly useful in collaborative environments where maintaining the integrity and chronological order of changes is essential. Yet, merge commits can clutter the history, making it harder to follow specific lines of development.

𝟮. 𝗥𝗲𝗯𝗮𝘀𝗲

When you rebase Branch A onto Branch B (with 𝚐𝚒𝚝 𝚛𝚎𝚋𝚊𝚜𝚎), you're essentially saying, "Let's pretend these changes from Branch A were made on top of the latest changes in Branch B." Rebase rewrites the project history by creating new commits for each commit in the original branch. This results in a much cleaner, straight-line history. Yet, it could be problematic if multiple people work on the same branch, as rebasing rewrites history, which can be challenging if others have pulled or pushed the original branch.

So, when to use them:

🔹 𝗨𝘀𝗲 𝗺𝗲𝗿𝗴𝗶𝗻𝗴 𝘁𝗼 𝗽𝗿𝗲𝘀𝗲𝗿𝘃𝗲 𝘁𝗵𝗲 𝗰𝗼𝗺𝗽𝗹𝗲𝘁𝗲 𝗵𝗶𝘀𝘁𝗼𝗿𝘆, especially on shared branches or for collaborative work. It's ideal for feature branches to merge into a main or develop branch.

🔹 𝗨𝘀𝗲 𝗿𝗲𝗯𝗮𝘀𝗶𝗻𝗴 𝗳𝗼𝗿 𝗽𝗲𝗿𝘀𝗼𝗻𝗮𝗹 𝗯𝗿𝗮𝗻𝗰𝗵𝗲𝘀 or when you want a clean, linear history for easier tracking of changes. Remember to rebase locally and avoid pushing rebased branches to shared repositories. Also, be aware 𝗻𝗼𝘁 𝘁𝗼 𝗿𝗲𝗯𝗮𝘀𝗲 𝗽𝘂𝗯𝗹𝗶𝗰 𝗵𝗶𝘀𝘁𝗼𝗿𝘆. If your branch is shared with others, rebasing can rewrite history in a way that is disruptive and confusing to your collaborators.

Изображение
Hello, friends!👋

Our QA community also appeared on LinkedIn:

– Real cases: how to market yourself to an IT company?
– QA news, research, and statistics ℹ
– Unique content! 🆕
– Workshops🤓
– Meetups 📢
– Case studies and expert opinions 👨‍🏫
– Manuals, checklists, and guides ⚙
– Info about internship programs 💼
– Sparkling professional humor 😎
– Answers to FAQs ❓
– Tips and life hacks 👨‍💻

Follow us on 🔗LinkedIn 🔗
Изображение
20 Usability Testing Tools & User Testing Software 2024

Choosing the right usability testing tool can be overwhelming. To save you time, money, and sanity we created our list of the 20 best remote usability testing tools. Find the perfect match for you!

6 factors we evaluated for each usability testing software:
Features
Best for use cases
Recruitment options
Cost
Offered support
User reviews

20 remote usability testing tools & user testing platforms:
1. UXtweak
2. UserZoom
3. Lookback
4. Hotjar
5. UserTesting
6. UsabilityHub
7. Optimal Workshop
8. Userlytics
9. Useberry
10. Userfeel
11. Userbrain
12. Loop 11
13. PlaybookUX
14. UXarmy
15. Maze
16. TryMyUI
17. Proven by Users
18. Crazy Egg
19. Userpeek
20. Ballpark

🔗 See more information about this tools
Изображение
18 most used Linux commands YOU MUST KNOW🐧

- ls
- mv
- ssh
- cd
- cat
- sudo
- pwd
- grep
- top
-mkdir
- find
- wget
- rm
- chmod
- tar
- cp
- chwon
- gzip
Видео/гифка, 1 сек, telegram-cloud-document-2-5240277743739880396.mp4
Every developer’s day begins with these words😆
Изображение
CI/CD Systems - Information Software tester must know👨‍🎓📚

Continuous Integration/Continuous Deployment (CI/CD) systems revolutionize software development by automating the process of code integration, testing, and deployment. CI ensures that code changes are regularly merged into a shared repository, promoting collaboration and early detection of errors. CD extends this pipeline to automatically deploy code to production environments, minimizing manual intervention and reducing deployment risks.

CI/CD systems enhance development speed, quality, and reliability. Automated testing within the pipeline ensures that new code meets predefined standards and does not introduce regressions. This leads to faster feedback loops, enabling developers to address issues promptly. By automating repetitive tasks, developers can focus on innovation and code improvement rather than spending time on manual integration and deployment processes.

👀 Watch it on YouTube 👀
Видео/гифка, 1032 сек, CI_CD Systems - Information Software tester must know.mp4

🐶 Re-Inventing the API Client Bruno 🐶

Bruno
is a Fast and Git-Friendly Opensource API client, aimed at revolutionizing the status quo represented by Postman, Insomnia and similar tools out there.

Bruno stores your collections directly in a folder on your filesystem. We use a plain text markup language, Bru, to save information about API requests.

You can use git or any version control of your choice to collaborate over your API collections.

Bruno is offline-only. There are no plans to add cloud-sync to Bruno, ever. We value your data privacy and believe it should stay on your device. Read our long-term vision here.

👀 Watch it on YouTube 👀

Видео/гифка, 875 сек, Bruno_#3_Why_Bruno_has_a_chance_to_dethrone_5_6_BILLION_dollar_Postman.mp4
ANDERSEN TRAINEE
: 15'485 | на пост: 0 | ER: 0%
Публикации Упоминания Аналитика

#recruitment

Hello!
Andersen announces recruitment for the AQA Trainee (C#, JS, Python, Java) followed by employment.

Locations* :
AQA JS
- Krakow, Gdansk, Wroclaw, Budapest, Batumi, Tbilisi, Cherkasy, Dnipro, Odesa, Lviv, Chernihiv.

AQA Python - Krakow, Gdansk, Wroclaw, Budapest.

AQA C# - Krakow, Gdansk, Wroclaw, Budapest, Cherkasy, Dnipro, Odesa, Lviv, Chernihiv.

AQA Java -Krakow, Gdansk, Wroclaw, Batumi, Tbilisi, Almaty, Budapest, Cherkasy, Dnipro, Odesa, Lviv, Chernihiv.
*Including relocatees.

Requirements:
📌English level Intermediate or higher;
📌QA Manual experience and/or successfully completed courses in Software Manual Testing;
📌knowledge of the basics of autotesting tools;
📌any programming experience (C#, JS, Python, Java).

⭐️Guaranteed employment upon successful completion of training.

✉️If you are interested in an internship at the international company Andersen, we kindly ask you to fill in the ong>FORM and follow the directions that will be sent to your email specified in the form.

Andersen is a great opportunity for your start and growth in IT🕊

Изображение
Key Browser Statistics: Picking Test-Worthy Browsers in 2024 💻🌐

Customer satisfaction is crucial for the success of your business, еspеcially when you are in thе highly compеtitivе digital world. And this competition will only continue to rise. Therefore, to outshinе your competitors, it’s crucial to dеvеlop mind-blowing wеb applications for your softwarе products.

Whether it’s revamping an еxisting wеbsitе or building it from scratch, it’s important to еnsurе it dеlivеrs a uniform еxpеriеncе across various browsеrs and opеrating systеms. Howеvеr, browsеrs display wеbsitеs diffеrеntly due to varying browser engines. So, how can you dеtеrminе if your wеb app is compatiblе with multiple browsеrs? By conducting cross browsеr compatibility tеsting. This tеsting еnsurеs that your wеbsitе works sеamlеssly on both latest and legacy browsеrs.

🔗Read full article 🔗
Изображение

💻 Lenovo unveils transparent laptop concept 💻

Lenovo showcased a transparent laptop concept at the recent Mobile World Congress (MWC) in Barcelona. This concept device, which has attracted significant attention, features a transparent display panel and a detachable, transparent keyboard.

The transparent display functions by overlaying graphics on the user's surroundings, effectively creating a form of augmented reality. While aesthetically pleasing and embodying futuristic design elements, the device's practical applications remain unclear.

Challenges and Considerations:

Limited Use Cases: The transparent display offers minimal benefit in typical laptop usage scenarios, where users often face walls or windows.
Sunlight Readability
Privacy Concerns: The rear of the device reflects the display, potentially revealing information viewed by the user.
Keyboard Functionality: The capacitive touch keyboard likely cannot compete with the feel and tactility of traditional keyboards.

Изображение

Найдено 674 поста